{% extends 'generic/object.html' %}
{% load i18n %}
{% load helpers %}
{% block content %}
| {% trans "Name" %} |
{{ object.name }} |
| {% trans "Address Family" %} |
{{ object.get_family_display }} |
| {% trans "Description" %} |
{{ object.description|placeholder }} |
{% if object.rules %}
| {% trans "Match" %} |
{% trans "Value" %} |
{% trans "Action" %} |
{% for rule in object.rules %}
| {{ rule.match|default:"—" }} |
{{ rule.value|default:"—" }} |
{{ rule.action|default:"—" }} |
{% endfor %}
{% endif %}
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/comments.html' %}
{% endblock %}