{% extends "base.html" %} {% block content %}
Upcoming Past All
{% if appointments %}
{% set current_date = namespace(value='') %} {% for appt in appointments %} {% set appt_date = appt.start_at.strftime('%A, %B %-d, %Y') if appt.start_at else 'No Date' %} {% if appt_date != current_date.value %} {% if not loop.first %}
{% endif %}
{{ appt_date }}
{% set current_date.value = appt_date %} {% endif %}
{% if appt.all_day %} All Day {% elif appt.start_at %} {{ appt.start_at.strftime('%-I:%M %p') }} {% endif %}
{% if appt.location %} {{ appt.location }} {% endif %} {% if appt.recurrence %} {{ appt.recurrence }} {% endif %} {% if appt.contact_count and appt.contact_count > 0 %} {{ appt.contact_count }} {% endif %}
Edit
{% endfor %}
{% else %}
📅
No appointments {{ 'upcoming' if timeframe == 'upcoming' else 'found' }}
Schedule an Appointment
{% endif %} {% endblock %}