{% extends "chrono/manager_agenda_view.html" %} {% load i18n %} {% block breadcrumb %} {{ block.super }} {% trans "Settings" %} {% endblock %} {% block appbar %}

{% trans "Settings" %}

{% trans 'Add custody period' %} {% trans 'Add custody rule' %} {% endblock %} {% block content %} {% if not agenda.is_complete %}

{% trans "Custody rules are not complete." %}

{% endif %}

{% trans "Custody rules" %}

{% if agenda.rules.all %} {% else %}
{% blocktrans %} This agenda doesn't have any custody rules yet. {% endblocktrans %}
{% endif %}

{% trans "Exceptional custody periods" %}

{% if agenda.periods.all %} {% else %}
{% blocktrans %} This agenda doesn't have any custody period. They can be used to specify explicit moments when one of the guardian should have custody, regardless of global rules. {% endblocktrans %}
{% endif %}
{% endblock %}