Files
muzak/playlist/templates/Nominate.html
T
mark 66e69bc23d Updates
Nu met 200% meer AI.
2024-02-08 00:09:59 +01:00

21 lines
543 B
HTML

{% extends "Base.html" %}
{% block main-content %}
<h2>Nominate</h2>
{% if warning %}
<div class="info warning">{{warning}}</div>
{% endif %}
{% if error %}
<div class="info error">{{error}}</div>
{% endif %}
<form method="post">
{% csrf_token %}
<input type="text" name="spotify_link" placeholder="Spotify-link">
<input type="submit" value="OK">
</form>
{% if nominated %}
<div class="info">{% if error %}❌{% else %}✅{% endif %} {{nominated}}</div>
{% include "Banter.html" with track=nominated %}
{% endif %}
{% endblock %}