{% load i18n static %}

{{ calendar.title }}

{% if calendar.undated_count %}
{% blocktrans count count=calendar.undated_count %}{{ count }} visible record has no date and cannot be placed on the calendar.{% plural %}{{ count }} visible records have no date and cannot be placed on the calendar.{% endblocktrans %}
{% endif %} {% if calendar.truncation %}
{% trans "Rendering limit reached." %} {% if calendar.truncation.omitted_events %} {% blocktrans with count=calendar.truncation.omitted_events %}{{ count }} projected schedule occurrences are not shown.{% endblocktrans %} {% endif %} {% if calendar.truncation.unprojected_objects %} {% blocktrans with count=calendar.truncation.unprojected_objects %}{{ count }} scheduled objects were not projected onto the calendar.{% endblocktrans %} {% endif %} {% if calendar.truncation.more_rows %} {% blocktrans with limit=calendar.source_limit %}Further records exist beyond the first {{ limit }} loaded per source.{% endblocktrans %} {% endif %} {% trans "Narrow the filters or use the week view to see the rest." %}
{% endif %}
{% for weekday in calendar.weekday_names %}{% endfor %} {% for week in calendar.rows %} {% for cell in week %} {% endfor %} {% endfor %}
{% blocktrans with period=calendar.title %}Data Protection calendar for {{ period }}{% endblocktrans %}
{{ weekday }}
{% for event in cell.events %} {% include "netbox_proxbox/inc/data_protection_calendar_event.html" %} {% endfor %} {% if cell.additional_count %}
+{{ cell.additional_count }} {% trans "more" %} {% for event in cell.overflow %} {% include "netbox_proxbox/inc/data_protection_calendar_event.html" %} {% endfor %} {% if cell.hidden_count %} {% blocktrans with count=cell.hidden_count %}{{ count }} further events not shown{% endblocktrans %} {% endif %}
{% endif %}