{% extends 'generic/object.html' %} {% load i18n %} {% load helpers %} {% block content %}
| {% trans "Name" %} | {{ object.name }} |
|---|---|
| {% trans "NAT Type" %} | {% badge object.nat_type object.get_nat_type_color %} |
| {% trans "Description" %} | {{ object.description|placeholder }} |
| {% 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 Address" %} | {% if object.destination_address %}{{ object.destination_address }}{% else %}—{% endif %} |
|---|---|
| {% trans "Destination Prefix" %} | {% if object.destination_prefix %}{{ object.destination_prefix }}{% else %}—{% endif %} |