{% extends "chrono/manager_agenda_settings.html" %} {% load i18n %} {% block agenda-extra-management-actions %} {% trans 'Import Events' %} {% trans 'New Event' %} {% endblock %} {% block agenda-settings %}

{% trans "Events" %}

{% with view.get_events as events %} {% if events %} {% else %}
{% 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 %} {% endwith %}

{% trans "Booking check options" %} {% trans 'Configure' %}

{% if has_absence_reasons %} {% if agenda.absence_reasons_group %}

{% trans "Absence reasons group:" %} {{ agenda.absence_reasons_group }}

{% else %}

{% trans "No absence reasons configured for this agenda." %}

{% endif %} {% endif %} {% with agenda.get_booking_check_filters as check_filters %} {% if check_filters %}

{% trans "Filters:" %}

{% else %}

{% trans "No filters configured for this agenda." %}

{% endif %} {% endwith %}

{% trans "User block template:" %}

{{ agenda.get_booking_user_block_template }}

{% trans "Automatically mark events when they are checked:" %} {{ agenda.mark_event_checked_auto|yesno }}

{% trans "Notifications" %} {% trans 'Configure' %}

{% for notification_type in object.notifications_settings.get_notification_types %} {% if forloop.first %}{% endif %} {% empty %}

{% trans "Notifications are disabled for this agenda." %}

{% endfor %}
{% if has_recurring_events %}

{% trans "Recurrence exceptions" %} {% trans 'Configure' %}

{% if object.recurrence_exceptions_report.events.exists %}

{% trans "The following events exist despite exceptions because they have active bookings:" %}

{% trans "You can cancel them manually for this warning to go away, or wait until they are passed." %}

{% endif %}
{% endif %} {% endblock %}