{% extends 'generic/object.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load plugins %} {% load render_table from django_tables2 %} {% block extra_controls %} {% if perms.netbox_security.change_natruleset %} Add Rule {% endif %} {% endblock extra_controls %} {% block content %}
NAT Rulesets
name {{ object.name }}
Description {{ object.description|placeholder }}
NAT Type {{ object.nat_type }}
NAT Rules {{ object.rules.count }}
Assigned Host {{ object.assigned_object|linkify }}
Direction {{ object.direction }}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}
Source Zones
{% render_table source_zones_table 'inc/table.html' %}
Destination Zones
{% render_table destination_zones_table 'inc/table.html' %}
{% endblock %}