tryiong to fix the details page

This commit is contained in:
2025-09-29 14:07:35 -07:00
parent 4a3ab4042a
commit 3ecc3aa5dd
2 changed files with 3 additions and 2 deletions

View File

@@ -5,9 +5,9 @@
<h3>
Detailed View for
<div class="btn-group">
<a href="{{ url_for('detailed', person='Sarah', plan_date=plan_date.isoformat() if plan_date else '') }}"
<a href="{{ url_for('detailed') }}?person=Sarah{% if plan_date %}&plan_date={{ plan_date.isoformat() }}{% endif %}"
class="btn btn-sm {% if person == 'Sarah' %}btn-primary{% else %}btn-outline-primary{% endif %}">Sarah</a>
<a href="{{ url_for('detailed', person='Stuart', plan_date=plan_date.isoformat() if plan_date else '') }}"
<a href="{{ url_for('detailed') }}?person=Stuart{% if plan_date %}&plan_date={{ plan_date.isoformat() }}{% endif %}"
class="btn btn-sm {% if person == 'Stuart' %}btn-primary{% else %}btn-outline-primary{% endif %}">Stuart</a>
</div>
</h3>