{% extends 'netbox_ip_history/base.html' %} {% load i18n %} {% block title %}{% trans "Source Support Matrix" %}{% endblock %} {% block page_title %}{% trans "Source Support Matrix" %}{% endblock %} {% block ip_history_content %}
| {% trans "Data Source" %} | {% trans "Support Level" %} | {% trans "Declared Capabilities" %} |
|---|---|---|
|
{{ row.name }}
{{ row.source_type }}
|
{% if row.support_level|lower == 'export' %} {% trans "Export" %} {% elif row.support_level|lower == 'native' %} {% trans "Native" %} {% elif row.support_level|lower == 'experimental' %} {% trans "Experimental" %} {% else %} {{ row.support_level|title }} {% endif %} |
{% for cap in row.capabilities %}
{{ cap }}
{% empty %}
—
{% endfor %}
|