{% extends 'generic/object.html' %} {% load buttons %} {% load helpers %} {% load i18n %} {% load perms %} {% load plugins %} {% load render_table from django_tables2 %} {% block breadcrumbs %} {{ block.super }} {% if object.application %} {% endif %} {% endblock %} {% block content %}
{% trans "Data Flow" %}
{% trans "Application" %} {{ object.application|linkify|placeholder }}
{% trans "Group" %} {{ object.group|linkify|placeholder }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Status" %} {% badge object.inherited_status_display bg_color=object.get_status_color %}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %} {% include 'inc/panels/custom_fields.html' %} {% plugin_left_page object %}
{% trans "Specifications" %}
{% for o in sources %} {% if forloop.first %} {% endif %} {% empty %} {% endfor %} {% for o in destinations %} {% if forloop.first %} {% endif %} {% empty %} {% endfor %}
{% trans "Protocol" %} {{ object.get_protocol_display|placeholder }}
{% trans "Source ports" %} {{ object.source_port_list|placeholder }}
{% trans "Destination ports" %} {{ object.destination_port_list|placeholder }}
{% trans "Sources" %}{{ o|linkify }}
{% trans "Sources" %} {{ ""|placeholder }}
{% trans "Destinations" %}{{ o|linkify }}
{% trans "Destinations" %} {{ ""|placeholder }}
{% plugin_right_page object %}
{% if children_table %}
{% trans "Children Data Flows" %}
{% render_table children_table %}
{% endif %}
{% plugin_full_width_page object %}
{% endblock content %}