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

{{ object.label }} [{% trans "identifier:" %} {{object.id}}]

{% if user.is_staff %} {% trans 'Delete' %} {% endif %} {% if user_can_manage %} {% trans 'Options' %} {% if object.kind == "events" %} {% trans 'Import Events' %} {% trans 'New Event' %} {% else %} {% trans 'New Meeting Type' %} {% trans 'New Time Period' %} {% endif %} {% endif %} {% endblock %} {% block breadcrumb %} {{ block.super }} {% if agenda %} {{agenda.label}} {% elif object %} {{object.label}} {% endif %} {% endblock %} {% block content %} {% if object.kind == "events" %} {% if object.event_set.count %}
{% 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 %} {% endif %} {% if object.kind == "meetings" %}

{% 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.timeperiod_set.count %}
{% else %}
{% blocktrans %} This agenda doesn't have any time period yet. Click on the "New Time Period" button in the top right of the page to add a first one. {% endblocktrans %}
{% endif %} {% endif %} {% endblock %}