{% extends 'wise_core/base.html' %} {% load wise_icons i18n %} {% comment %} The chrome every page of a parent/child group shares: the parent's action bar, the parent's name, and the tab bar of its child models. The parent's own overview and each child's list/create/update/delete/detail page all extend this, so a visitor never loses the record they are working inside - switching from a product's Variants to its Reviews is one click, and the title above the tabs never changes. Fill `parent_body` in a subtemplate, or extend one of the four ready-made ones next to this file (parent_detail / parent_child_list / parent_child_form / parent_child_confirm / parent_child_detail). {% endcomment %} {% block body %}
{% block parent_header %}
{% block parent_actions %}{% endblock %}
{% block parent_icon %}{% endblock %}

{% block parent_title %}{{ parent_object }}{% endblock %}

{% block parent_subtitle %}{% endblock %}
{% endblock %} {% block parent_tabs %} {% include 'wise_core/components/_child_tabs.html' %} {% endblock %}
{% block parent_body %}{% endblock %}
{% endblock %}