{% extends 'generic/object.html' %} {% load buttons %} {% load helpers %} {% load i18n %} {% load perms %} {% load plugins %} {% load render_table from django_tables2 %} {% block content %}
{% trans "Object Alias" %}
{% trans "Name" %} {{ object.name }}
{% trans "Description" %} {{ object.description|placeholder }}
{% include 'inc/panels/tags.html' %} {% plugin_left_page object %}
{# FIXME: put table in Tab #}
{% include 'inc/panels/comments.html' %} {% include 'inc/panels/custom_fields.html' %} {% plugin_right_page object %}
{% with count=object.prefixes.count %} {% if count %}
{% trans "Prefixes" %}  {{ count }}
{% render_table prefix_table %}
{% endif %} {% endwith %} {% with count=object.ip_ranges.count %} {% if count %}
{% trans "IP Ranges" %}  {{ count }}
{% render_table ip_range_table %}
{% endif %} {% endwith %} {% with count=object.ip_addresses.count %} {% if count %}
{% trans "IP Addresses" %}  {{ count }}
{% render_table ip_address_table %}
{% endif %} {% endwith %}
{# FIXME: include #}
{% trans "Source in Data Flows" %}
{% render_table dataflow_sources_table %}
{% trans "Destination in Data Flows" %}
{% render_table dataflow_destinations_table %}
{% plugin_full_width_page object %}
{% endblock content %}