{% extends 'generic/object.html' %}
{% load render_table from django_tables2 %}
{% block content %}
| Name |
{{ object.name }} |
| Source Zone |
{{ object.from_zone }} |
| Destination Zone |
{{ object.to_zone }} |
| Default Action |
{{ object.get_default_action_display }} |
| Rule Count |
{{ object.rules.count }} |
| Description |
{{ object.description }} |
{% include 'inc/panels/custom_fields.html' %}
| Device |
{{ object.device }} |
| Site |
{{ object.site }} |
| Tenant |
{{ object.tenant }} |
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/comments.html' %}
{% render_table rules_table %}
{% endblock content %}