{% blocktrans %}
This agenda doesn't have any event yet. Click on the "New Event" button in
the top right of the page to add a first one.
{% endblocktrans %}
{% endif %}
{% endif %}
{% if object.kind == "meetings" %}
{% trans 'Meeting Types' %}
{% if object.meetingtype_set.count %}
{% for meeting_type in object.meetingtype_set.all %}
{% 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 %}
{% if forloop.counter != 1 or forloop.revcounter != 1 %}
{% 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 %}
{% endif %}
{% trans "Permissions" %}
{% trans "Edit Role:" %} {% if agenda.edit_role %}{{ agenda.edit_role }}{% else %}{% trans "undefined" %}{% endif %}
{% trans "View Role:" %} {% if agenda.view_role %}{{ agenda.view_role }}{% else %}{% trans "undefined" %}{% endif %}
{% trans "Booking Delays" %}
{% trans "Minimal booking delay:" %} {{ agenda.minimal_booking_delay }} {% trans "days" %}
{% trans "Maximal booking delay:" %} {{ agenda.maximal_booking_delay }} {% trans "days" %}