{% 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 Group" %}
{% trans "Application" %} {{ object.application|linkify }}
{% trans "Parent" %} {{ object.parent|placeholder|linkify }}
{% trans "Name" %} {{ object.name }}
{% trans "Slug" %} {{ object.slug }}
{% 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 "Child Groups" %}
{% render_table children_table %}
{% plugin_right_page object %}
{% trans "Data Flows (direct members)" %}
{% render_table dataflows_table %}
{% trans "Data Flows (child groups' members)" %}
{% render_table dataflows_recursive_table %}
{% plugin_full_width_page object %}
{% endblock content %}