{% macro display_entry(entry) %} {{ entry.name }} {% endmacro %} {% macro display_group(group) %} {{ group.group_name }} {% for entry in group.entries %} {{ display_entry(entry) }} {% endfor %} {% for child in group.children %} {{ display_group(child) }} {% endfor %} {% endmacro %} {% extends 'base/master-detail-email.html.j2' %} {% block title %}Secrets{% endblock %} {% block master %}
Ungrouped {% for entry in groups.ungrouped %} {{ display_entry(entry) }} {% endfor %} {% for child in groups.groups %} {{ display_group(child) }} {% endfor %}
{% endblock %} {% block detail %} {% if group_page | default(false) %}
{% include '/secrets/partials/group_detail.html.j2' %}
{% elif root_group_page | default(false) %}
{% include '/secrets/partials/edit_root.html.j2' %}
{% elif secret_page | default(false) %}
{% include '/secrets/partials/tree_detail.html.j2' %}
{% else %} {% include '/secrets/partials/default_detail.html.j2' %} {% endif %} {% endblock %} {% block local_scripts %} {% endblock %}