{% extends 'program_base.html' %} {% load dateutils %} {% block program_content %}
  • All days
  • {% for day in camp.camp_days %} {% with month_padded=day.lower.date|date:"m" day_padded=day.lower.date|date:"d" %} {{ day.lower.date|date:"l" }} {% endwith %} {% endfor %}

    Type:

      {% for type in camp.event_types %}
    • {{ type.name }}
    • {% endfor %}

    Location:

      {% for location in camp.event_locations %}
    • {{ location.name }}
    • {% endfor %}
    ICS
    {% block schedule_content %} {% endblock schedule_content %}

    {% url 'schedule_index' camp_slug=camp.slug as baseurl %} {% endblock program_content %}