Log out
Theme Song Booth — Admin Dashboard
{% with messages = get_flashed_messages(with_categories=true) %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endwith %}
| ID |
Name |
Email |
Genre |
Status |
Approved |
Actions |
{% for r in requests %}
| #{{ r.id }} |
{{ r.name }} |
{{ r.email }} |
{{ r.style_genre or '-' }} |
{{ statuses[r.status] }} |
{% if r.customer_approved != 'none' %}{{ r.customer_approved.upper() }}{% else %}-{% endif %} |
Open |
{% endfor %}
{% if not requests %}
| No requests found. |
{% endif %}