{% extends "base.html" %} {% load i18n %} {% load mptt_tags %} {% load staticfiles %} {% block title %}{% trans "Agenda" %} – {{ block.super }}{% endblock %} {% block header %} {% endblock %} {% block javascript %} {% if perms.agenda.can_manage_agenda %} {% endif %} {% endblock %} {% block content %}
{% csrf_token %} {% if perms.agenda.can_manage_agenda %} {% endif %}

{% trans "Agenda" %} {% if perms.agenda.can_manage_agenda %} {% trans "New" %} {% endif %} PDF

{{ items|length }} {% blocktrans count counter=items|length %}item{% plural %}items{% endblocktrans %}
{% if perms.agenda.can_see_orga_items %} {% if start and end %}
{% trans "Start of event" %}: {{ start|date:"DATETIME_FORMAT" }}
{% trans "Estimated end" %}: {{ end|date:"DATETIME_FORMAT" }}
{% else %} {% trans 'Set start time of event' %} {% endif %} {% endif %}
{% if perms.agenda.can_manage_agenda %} {% endif %} {% if perms.agenda.can_see_orga_items %} {% endif %} {% if perms.agenda.can_manage_agenda or perms.projector.can_manage_projector %} {% endif %} {% if perms.agenda.can_manage_agenda %} {% endif %} {% if perms.agenda.can_see_orga_items %} {% endif %} {% if perms.agenda.can_manage_agenda or perms.projector.can_manage_projector %} {% endif %} {% if items %}
    {% recursetree items %}
  1. {% include "agenda/item_row.html" %} {% if not node.is_leaf_node %}
      {{ children }}
    {% endif %}
  2. {% endrecursetree %}
{% else %}
{% trans "No items available." %}
{% endif %}
{% endblock %}