{% extends 'admin/master.html' %} {% block body %}
Find supporters by organization name, MusicBrainz username, contact name or email.
{% if value %}| MusicBrainz ID (Organization) | State | Contact name | Contact email | Commercial | Standing | Tier | Featured | {# Buttons #} |
|---|---|---|---|---|---|---|---|---|
| {{ supporter.musicbrainz_id }} {{ '('+supporter.org_name+')' if supporter.org_name }} | {% if supporter.state == 'active' %} Active {% elif supporter.state == 'pending' %} Pending {% elif supporter.state == 'waiting' %} Waiting {% elif supporter.state == 'limited' %} Limited {% elif supporter.state == 'rejected' %} Rejected {% else %} UNKNOWN {% endif %} | {{ supporter.contact_name }} | {{ supporter.contact_email }} | {% if supporter.is_commercial %} Commercial {% else %} Non-commercial {% endif %} | {% if supporter.good_standing %} Good standing {% else %} Bad standing {% endif %} | {{ supporter.tier }} | {% if supporter.featured %} Featured {% else %} Not featured {% endif %} | Edit |