Jul 17 - Fill the gaps between Single-tenant mode and Multi-tenant mode - matching web UI

This commit is contained in:
2026-07-17 13:26:25 -04:00
parent c706489480
commit 321965038d
5 changed files with 19 additions and 8 deletions
+8 -3
View File
@@ -4,9 +4,14 @@
<div class="d-flex justify-content-between align-items-center mb-4">
<h2><i class="bi bi-clipboard-data"></i> Inspections</h2>
{% if current_user.role != 'customer' %}
<a href="{{ url_for('inspections.start') }}" class="btn btn-primary">
<i class="bi bi-plus-circle"></i> New Inspection
</a>
<div class="d-flex gap-2">
<a href="{{ url_for('inspection_schedules.index') }}" class="btn btn-outline-secondary">
<i class="bi bi-calendar-check"></i> Scheduled
</a>
<a href="{{ url_for('inspections.start') }}" class="btn btn-primary">
<i class="bi bi-plus-circle"></i> New Inspection
</a>
</div>
{% endif %}
</div>