{% extends "chrono/manager_agenda_settings.html" %} {% load i18n %} {% block extrascripts %} {{ block.super }} {% if 'display_exceptions' in request.GET %} {% endif %} {% endblock %} {% block agenda-extra-management-actions %} {% if has_resources %}{% trans 'Add resource' %}{% endif %} {% trans 'New Meeting Type' %} {% trans 'New Desk' %} {% endblock %} {% block agenda-settings %}

{% trans 'Meeting Types' %}

{% if object.meetingtype_set.count %} {% else %}
{% blocktrans %} This agenda doesn't have any meeting type yet. Click on the "New Meeting Type" button in the top right of the page to add a first one. {% endblocktrans %}
{% endif %}

{% trans 'Time Periods' %}

{% if object.desk_set.count %}
{% for desk in object.desk_set.all %}
{% url 'chrono-manager-agenda-add-time-period' agenda_pk=object.pk pk=desk.pk as add_time_period_url %}
{% endfor %}
{% else %}
{% blocktrans %} This agenda doesn't have any desk yet. Click on the "New Desk" button in the top right of the page to add a first one. {% endblocktrans %}
{% endif %}
{% with object.resources.all as agenda_resources %} {% if has_resources %}

{% trans 'Resources' %}

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