{% extends 'netbox_nsm/rulebook_cot_object.html' %} {% load i18n object_type %} {% block content %}
{% trans "Matrix" %}
{% if available_types %}
{% if show_obj_type_filter %}
{% else %} {% endif %}
{% endif %}
{% if matrix_axis_limit %}
{% if matrix_axis_limit.src_truncated and matrix_axis_limit.dst_truncated %} {% blocktrans with limit=matrix_axis_limit.limit src_total=matrix_axis_limit.src_total dst_total=matrix_axis_limit.dst_total %} Die Matrix zeigt höchstens {{ limit }} Einträge pro Achse. In den Regeln sind {{ src_total }} Quellen und {{ dst_total }} Ziele vorhanden; es werden jeweils die ersten {{ limit }} angezeigt. {% endblocktrans %} {% elif matrix_axis_limit.src_truncated %} {% blocktrans with limit=matrix_axis_limit.limit src_total=matrix_axis_limit.src_total %} Die Matrix zeigt höchstens {{ limit }} Quellen. In den Regeln sind {{ src_total }} Quellen vorhanden; es werden die ersten {{ limit }} angezeigt. {% endblocktrans %} {% else %} {% blocktrans with limit=matrix_axis_limit.limit dst_total=matrix_axis_limit.dst_total %} Die Matrix zeigt höchstens {{ limit }} Ziele. In den Regeln sind {{ dst_total }} Ziele vorhanden; es werden die ersten {{ limit }} angezeigt. {% endblocktrans %} {% endif %}
{% endif %} {% if matrix_viewport %} {{ matrix_viewport|json_script:"nsm-matrix-data" }}
{% for zone in dst_zones %} {% endfor %}
Destination → ↓ Source
{% trans "Loading matrix…" %}
{% else %}

{% trans "No zones match the current filter." %}

{% endif %}
{% endblock %}