{% extends 'generic/object.html' %} {% load i18n %} {% load plugins %} {% load render_table from django_tables2 %} {% block content %}
{% trans "Applications" %}
{% if object.source_ports %} {% else %} {% endif %} {% if object.source_ports %} {% else %} {% endif %} {% if object.description %} {% endif %}
{% trans "Name" %} {{ object.name }}
{% trans "Identifier" %} {{ object.identifier }}
{% trans "Protocols" %} {{ object.protocol_list|placeholder }}
Source Ports{{ object.source_port_list|placeholder }}{{ object.source_ports|placeholder }}
Destination Ports{{ object.destination_port_list|placeholder }}{{ object.destination_ports|placeholder }}
{% trans "Description" %} {{ object.description|placeholder }}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}
{% trans "Application Items" %}
{% render_table items_table 'inc/table.html' %}
{% endblock %}