{% extends 'includes/base.html' %} {% block content %}

{{ item }}

{% if item == 'admins' %}

Add a homie to be an admin.
Admins can manage other admins as well as hide artwork,
approve/reject artwork, ban artists, and verify artists.

{% elif item == 'artists' %}

Verified artists will skip the queue
and have their artwork displayed immediately.

{% endif %}
{{ form.csrf_token }}
{{ form.handle }}
    {%- for field, errors in form.errors.items() %}
  • {{ ', '.join(errors) }}
  • {%- endfor %}
...back to admin
{% endblock %}