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

Supporters


Edit supporter #{{ supporter.id }} {% if supporter.is_commercial %} {{ supporter.org_name }} ({{ supporter.musicbrainz_id }}) {% else %} {{ supporter.musicbrainz_id }} {% endif %}

Created on {{ supporter.created }}.

{% for field in form.errors %} {% for error in form.errors[field] %}
{{ field }}: {{ error }}
{% endfor %} {% endfor %}
{{ form.csrf_token }}

General info

{{ form.musicbrainz_id(class="form-control") }}
Determines which MusicBrainz supporter manages this MetaBrainz account. Can be changed to switch the owner. Only one supporter can be an owner.
{{ form.contact_name(class="form-control") }}
{{ form.contact_email(class="form-control") }}

Data access

{{ form.state(class="form-control") }}
State determines whether this supporter has access to the MetaBrainz Live Data Feed API.
  • Active - Full access to the API
  • Pending - New supporter waiting for approval
  • Waiting - Old supporter in the waiting list (for approval)
  • Rejected - Rejected access the API
  • Limited - Cannot access the API

Commercial info

If this supporter is commercial, all the information below should be filled in.
{{ form.org_name(class="form-control") }}
{{ form.api_url(class="form-control") }}
{{ form.org_desc(class="form-control", rows=5) }}

Address

{{ form.address_street(class="form-control") }}
{{ form.address_city(class="form-control") }}
{{ form.address_postcode(class="form-control") }}
{{ form.address_state(class="form-control") }}
{{ form.address_country(class="form-control") }}

Financial info

{{ form.tier(class="form-control") }}
$ {{ form.amount_pledged(class="form-control") }}

Promotion

If this supporter is featured, it will show up in the public list on the website. All the information below should be filled in if this is checked.
{{ form.website_url(class="form-control") }}
{{ form.logo(class="form-control") }}
Logo image that will be displayed on the website. Preferably in the SVG format.
{{ form.logo_url(class="form-control") }}
{{ form.usage_desc(class="form-control", rows=5) }}
Provide a very short (one full sentence) description that includes name of this organization.
{% endblock %}