{% extends "chrono/manager_base.html" %} {% load i18n %} {% block appbar %}

{% trans 'Agendas' %}

{% if user.is_staff or has_access_to_unavailability_calendars %} {% endif %} {% if user.is_staff %} {% trans 'Categories' %} {% trans 'New' %} {% endif %} {% endblock %} {% block content %} {% if object_list %} {% regroup object_list by category as agenda_groups %} {% for group in agenda_groups %}
{% if group.grouper %}

{{ group.grouper }}

{% elif not forloop.first %}

{% trans "Misc" %}

{% endif %}
{% endfor %} {% else %}
{% blocktrans %} This site doesn't have any agenda yet. Click on the "New" button in the top right of the page to add a first one. {% endblocktrans %}
{% endif %} {% endblock %}