Back to Wagtail

Tabbed Interface

wagtail/admin/templates/wagtailadmin/panels/tabbed_interface.html

7.4.2823 B
Original Source

{% load wagtailadmin_tags i18n %} {% if self.help_text %} {% help_block status="info" %}{{ self.help_text }}{% endhelp_block %} {% endif %}

{% for child, identifier in self.visible_children_with_identifiers %} {% if child.show_panel_furniture %} {# If there's at least one child that shows the panel furniture, render the tab navigation #} {% include 'wagtailadmin/shared/tabs/tab_nav_link.html' with tab_id=identifier title=child.heading classname=child.classes|join:" " %} {% endif %} {% endfor %}

{% for child, identifier in self.visible_children_with_identifiers %} {% if child.show_panel_furniture %} {{ child.render_html }} {% else %} {# If all of the children in the tab do not show the panel furniture, render them without the tab section #} {{ child.render_html }} {% endif %} {% endfor %}