Files
SneakySwole/app/templates/partials/nav.html
Phillip Tarrant 4e6930c207
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 12s
fix: reorder nav menu to place Dashboard after Home
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 15:57:43 -05:00

33 lines
1.1 KiB
HTML

{% set profiles = request.state.profiles %}
{% set active_profile = request.state.active_profile %}
<li>
<details class="dropdown">
<summary>
{% if active_profile %}
{{ active_profile.display_name }}
{% else %}
Select Profile
{% endif %}
</summary>
<ul dir="rtl">
{% for profile in profiles %}
<li>
<form method="POST" action="/profiles/switch" style="margin:0;">
<input type="hidden" name="profile_id" value="{{ profile.id }}">
<button type="submit" class="outline secondary"
style="width:100%; text-align:left; border:none;">
{{ profile.display_name }}
</button>
</form>
</li>
{% endfor %}
</ul>
</details>
</li>
<li><a href="/">Home</a></li>
<li><a href="/dashboard">Dashboard</a></li>
<li><a href="/workouts">Workouts</a></li>
<li><a href="/history">History</a></li>
<li><a href="/exercises">Exercises</a></li>
<li><a href="/profiles">Profiles</a></li>