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