{% extends 'generic/_base.html' %} {% load form_helpers i18n %} {% block title %}{% trans "Data Protection" %}{% endblock %} {% block content %}
{% include "netbox_proxbox/inc/data_protection_calendar.html" %}

{% trans "Visible-range events" %} {{ event_rows_total }}

{% if event_rows_total > event_rows_limit %}
{% blocktrans with limit=event_rows_limit total=event_rows_total %}Showing the first {{ limit }} of {{ total }} materialized events in this range. Narrow the filters or switch to the week view to list the rest.{% endblocktrans %}
{% endif %}
{% for row in event_rows %} {% empty %} {% endfor %}
{% trans "Kind" %} {% trans "Date and time" %} {% trans "Virtual machine" %} {% trans "Node or target" %} {% trans "Label" %}
{{ row.event.kind|title }} {{ row.event.time_text }} {{ row.virtual_machine|default:"—" }} {{ row.node|default:"—" }} {{ row.event.label }} {% if row.event.approximate %}{% trans "approximate schedule" %}{% endif %}
{% trans "No permitted events match this visible range." %}
{% endblock %}