{% load i18n %} {% with slots=form.get_slots %} {% if event %}

{% blocktrans with event_date=event.start_datetime count total=slots.participants %} Timesheet - {{ event }} - {{ event_date }} ({{ total }} participant) {% plural %} Timesheet - {{ event }} - {{ event_date }} ({{ total }} participants) {% endblocktrans %}

{% else %}

{% blocktrans with start=form.cleaned_data.date_start end=form.cleaned_data.date_end %}Timesheet from {{ start }} to {{ end }}{% endblocktrans %}

{% endif %} {% include "chrono/manager_events_report_fragment.html" %} {% endwith %}