Files
muzak/playlist/templates/Settings.html
T
2024-02-26 21:04:49 +01:00

36 lines
920 B
HTML

{% extends "Base.html" %}
{% block window-title %}
Instellingen
{% endblock %}
{% block main-content %}
<p>Hoi {{ user.first_name }}!</p>
{% if user.is_staff %}
<form action="{% url 'admin:index' %}">
<div class="field-row">
<label>Administratieve achterkant:</label>
<input type="submit" value="Admin" />
</div>
</form>
{% endif %}
<form method="post">
{% csrf_token %}
{% if backgrounds %}
<div class="field-row">
<label for="wallpaper">Wallpaper:</label>
<select id="background" name="background" onchange="this.form.submit()">
{% for background in backgrounds %}
<option
value="{{background.id}}"
{% if background.id == currentBackground %} selected{% endif %}
>
{{background.name}}
</option>
{% endfor %}
</select>
</div>
{% endif %}
</form>
{% endblock %}