furizon_webint/tpl/blocks/karaoke.html

32 lines
1.9 KiB
HTML
Raw Normal View History

2023-05-23 19:02:44 +00:00
<details id="karaoke">
<summary role="button"><img src="/res/icons/microphone.svg" class="icon" />Karaoke & Contest</summary>
<p>Singing is the spirit of Karaoke! If you like doing it join us for some fun with your favourite songs!<br />You can still just come to the desk and ask for a song, but keep in mind we will always give priority to requests that came through the form. Also, special matters or difficult to find songs will only be honored by the form!</p>
<h3>Participate in the contest!</h3>
<p>You can either decide to just sing, or let others vote you (anonymously) and try to win the prize! If you wish to send a song for the contest, make sure to toggle the appropriate option.</p>
{% set ns = namespace(contest=false) %}
2023-05-23 19:02:44 +00:00
{% if order.karaoke_songs %}
<h2>Your requests</h2>
<table>
<tr>
<th>Song name</th>
<th>Status</th>
<th style="width:1%;"></th>
</tr>
{% for song, data in order.karaoke_songs.items() %}
<tr>
<td>{% if data['contest'] %}🏆{% set ns.contest = true %}{% else %}🎵{% endif %} {{song}}</td>
2023-05-23 19:02:44 +00:00
<td>{% if data['approved'] %}<span style="color:#090;">Approved</span>{% elif data['approved'] is none %}<span style="color:#990;">Pending</span>{% else %}<span style="color:#900;">Rejected</span>{% endif %}</td>
<td>{% if data['approved'] is none %}<a role="button" href="karaoke/delete/{{song|urlencode}}">Delete</a>{% endif %}</td>
</tr>
{% endfor %}
</table>
{% endif %}
<h3>Request a new song</h3>
<form method="POST" action="karaoke/add">
<input type="text" name="song" placeholder="Insert Artist - Title here..." />
<label style="margin-bottom:2em;" for="switch"><input type="checkbox" name="wants_contest" role="switch" {% if ns.contest %}disabled{% endif %}> {% if ns.contest %}<strike>{% endif %}This song is for the contest{% if ns.contest %}</strike> You already have a song for the contest!{% endif %}</label>
2023-05-23 19:02:44 +00:00
<input type="submit" value="Submit" />
</form>
</details>