{% extends 'admin/master.html' %} {% block body %}

Welcome!

{% macro print_table(supporters) %} {% for supporter in supporters %} {% endfor %}
Name Contact name Contact email MusicBrainz ID Tier Applied on
{{ supporter.org_name }} {{ supporter.contact_name }} {{ supporter.contact_email }} {{ supporter.musicbrainz_id }} {{ supporter.tier }} {{ supporter.created }}
{% endmacro %}

Commercial supporters pending approval

{% if pending_supporters %} {{ print_table(pending_supporters) }} {% else %} None! Go take a break. :) {% endif %}

Commercial supporters in the waiting list

{% if waiting_supporters %} {{ print_table(waiting_supporters) }} {% else %} None! Go take a break. :) {% endif %} {% endblock %}