{% extends 'generic/object_detail.html' %} {% load helpers %} {% block extra_nav_tabs %} {% endblock extra_nav_tabs %} {% block extra_tab_content %}
{% include 'utilities/obj_table.html' with table=members_table table_template='panel_table.html' heading='Dynamic Group members' %}
{% endblock extra_tab_content %} {% block content_left_page %}
Dynamic Group
Name {{ object.name }}
Slug {{ object.slug }}
Description {{ object.description }}
Content Type {{ object.content_type }}
{% endblock content_left_page %} {% block content_right_page %}
Filter
{{ object.filter | render_json }}
{% endblock content_right_page %} {% block content_full_width_page %}
Filter Query Logic
This is a raw representation of the underlying filter that is derived by aggregating the filters from all descendant groups.
{{ raw_query }}
Related Groups
{% include 'utilities/obj_table.html' with table=descendants_table table_template='panel_table.html' heading='Descendants' disable_pagination=True %} {% include 'utilities/obj_table.html' with table=ancestors_table table_template='panel_table.html' heading='Ancestors' disable_pagination=True %}
{% endblock content_full_width_page %}