trying to fix detailed tab

This commit is contained in:
2025-09-30 06:35:22 -07:00
parent 298750e40b
commit 9a997bbee0
2 changed files with 2 additions and 2 deletions

View File

@@ -30,7 +30,7 @@
</button>
<ul class="dropdown-menu" aria-labelledby="templateDropdown">
{% for t in templates %}
<li><a class="dropdown-item" href="{{ url_for('detailed', person=person, plan_date=plan_date, template_id=t.id) }}">{{ t.name }}</a></li>
<li><a class="dropdown-item" href="/detailed?person={{ person }}{% if plan_date %}&plan_date={{ plan_date.isoformat() }}{% endif %}&template_id={{ t.id }}">{{ t.name }}</a></li>
{% endfor %}
</ul>
</div>