18 lines
No EOL
522 B
HTML
18 lines
No EOL
522 B
HTML
<!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> |