prototoolagain/app/templates/dashboard.html

18 lines
522 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<title>Dashboard</title>
</head>
<body>
<h1>Dashboard</h1>
<p>Welcome, {{ current_user.full_name }}!</p>
<ul>
{% for inspection in inspections %}
<li><a href="{{ url_for('inspections.view', inspection_id=inspection.id) }}">{{ inspection.reference_number }}</a></li>
{% else %}
<li>No inspections yet.</li>
{% endfor %}
</ul>
<a href="{{ url_for('inspections.new_inspection') }}">Create New Inspection</a>
</body>
</html>