{% load i18n %}
  • {% if event.cancellation_status %} {{ event.cancellation_status }} {% else %} {% if event.main_list_full %} {% trans "Full" %} {% endif %} {% if event.checked %} {% trans "Checked" %} {% endif %} {% endif %} {% if view_mode == 'settings_view' %} {% if event.label %}{{ event.label }} {% endif %}[{% trans "identifier:" %} {{ event.slug }}] {% else %} {% if event.label %}{{ event.label }} / {% endif %} {% endif %} {% if not event.recurrence_days %} {% if view_mode == 'day_view' %}{{ event.start_datetime|time }}{% else %}{{ event.start_datetime }}{% endif %} {% else %} {{ event.get_recurrence_display }} {% endif %} {% if view_mode != 'settings_view' %} {% if event.places or event.waiting_list_places %}-{% endif %} {% if event.places %} {% blocktrans count remaining_places=event.remaining_places %}{{ remaining_places }} remaining place{% plural %}{{ remaining_places }} remaining places{% endblocktrans %} ({% blocktrans with places=event.places count booked_places=event.booked_places %}{{ booked_places }}/{{ places }} booking{% plural %}{{ booked_places }}/{{ places }} bookings{% endblocktrans %}) {% endif %} {% if event.waiting_list_places %} ({% trans "Waiting list:" %} {% blocktrans count remaining_places=event.remaining_waiting_list_places %}{{ remaining_places }} remaining place{% plural %}{{ remaining_places }} remaining places{% endblocktrans %} - {% blocktrans with places=event.waiting_list_places count booked_places=event.booked_waiting_list_places %}{{ booked_places }}/{{ places }} booking{% plural %}{{ booked_places }}/{{ places }} bookings{% endblocktrans %}) {% endif %} {% endif %} {% if view_mode == 'settings_view' and event.publication_datetime %} ({% trans "publication date:" %} {{ event.publication_datetime }}) {% endif %} {% if not event.in_bookable_period %} ({% trans "out of bookable period" %}) {% endif %} {% if view_mode == 'settings_view' %} {% trans "remove" %} {% elif agenda.booking_form_url %} {% trans "Booking form" %} {% endif %}