{% 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 %}