{% extends 'admin/master.html' %} {% macro show_user(user) -%}

User {{ user.email }} with ID {{ user.id }}.

{% if user.activated %} {% else %} {% endif %} {% if user.disabled %} {% else %} {% endif %}
User ID Email Verified Status Paid Premium
{{ user.id }} {{ user.email }} ActivatedPendingDisabledEnabled{{ "yes" if user.is_paid() else "No" }} {{ "yes" if user.is_premium() else "No" }}
{%- endmacro %} {% macro show_verification(title, expected, errors) -%} {% if not expected %}

{{ title }} Verified

{% else %}

{{ title }}

Expected

{{expected}}

Current response

{% endif %} {%- endmacro %} {% macro show_domain(domain_with_data) -%}

Domain {{ domain_with_data.domain.domain }}

{% set domain = domain_with_data.domain %} {%- endmacro %} {% block body %}
{% if data.no_match and query %} {% endif %} {% if data.user %}

Found User {{ data.user.email }}

{{ show_user(data.user) }}
{% endif %}
{% for domain_with_data in data.domains %}
{{ show_domain(domain_with_data) }}
{% endfor %}
{% endblock %}