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

Conferences

Select a conference to manage

{% endblock %} {% block page_actions %} Import from Pretalx {% endblock %} {% block content %} {% if conferences %}
{% for conf in conferences %}
{{ conf.name }}
{% if conf.is_active %} Active {% else %} Inactive {% endif %}
{{ conf.slug }}
{{ conf.start_date|date:"N j, Y" }} – {{ conf.end_date|date:"N j, Y" }}
{% endfor %}
{% else %}

No conferences found.

{% endif %} {% endblock %}