{% extends 'generic/object.html' %} {% load i18n %} {% load helpers %} {% block content %}
{% trans "NAT Object" %}
{% trans "Name" %} {{ object.name }}
{% trans "NAT Type" %} {% badge object.nat_type object.get_nat_type_color %}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Source" %}
{% trans "Source Address" %} {% if object.source_address %}{{ object.source_address }}{% else %}—{% endif %}
{% trans "Source Prefix" %} {% if object.source_prefix %}{{ object.source_prefix }}{% else %}—{% endif %}
{% trans "Destination" %}
{% trans "Destination Address" %} {% if object.destination_address %}{{ object.destination_address }}{% else %}—{% endif %}
{% trans "Destination Prefix" %} {% if object.destination_prefix %}{{ object.destination_prefix }}{% else %}—{% endif %}
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}
{% endblock %}