{% extends "django_program/manage/base.html" %} {% block title %}Sections{% endblock %} {% block page_title %}

Sections

Conference sections and time blocks

{% endblock %} {% block page_actions %} Add Section {% endblock %} {% block content %} {% if sections %} {% for section in sections %} {% endfor %}
Name Slug Start Date End Date Order Actions
{{ section.name }} {{ section.slug }} {{ section.start_date|date:"N j, Y" }} {{ section.end_date|date:"N j, Y" }} {{ section.order }} Edit
{% else %}

No sections defined for this conference.

{% endif %} {% endblock %}