{% extends 'base.html' %} {% block content %}

Notes

{{person_name}}
{{ render_partial('partials/custom_select.html', name='view', options=[ {'id': 'month', 'name': 'Month'}, {'id': 'year', 'name': 'Year'}, {'id': 'notes', 'name': 'Notes', 'selected': true}, {'id': 'overview', 'name': 'Overview'} ], multiple=false, search=false, placeholder='View', hx_get=url_for('calendar.get_calendar', person_id=person_id), hx_target='#container', hx_push_url=true) }}
{% if workout_notes %}
{% for workout_note in workout_notes %} {% endfor %}
Date Note Tags
{{ workout_note.formatted_start_date }}
{{ render_partial('partials/workout_note.html', person_id=person_id, workout_id=workout_note.workout_id, note=workout_note.note) }} {{ render_partial('partials/workout_tags_list.html', workout_tags=workout_note.tags) }}
{% endif %}
{% endblock %} {% block add_workout_button %} {% endblock %}