41 lines
1.1 KiB
HTML
41 lines
1.1 KiB
HTML
{% extends "Base.html" %}
|
|
|
|
{% block window-title %}
|
|
Instellingen
|
|
{% endblock %}
|
|
|
|
{% block main-content %}
|
|
<p>Je bent ingelogd als <strong>{{ user.email }}</strong>.</p>
|
|
{% if user.is_staff %}
|
|
<form action="{% url 'admin:index' %}">
|
|
<div class="field-row settings">
|
|
<label>Administratieve achterkant:</label>
|
|
<input type="submit" value="" class="icon admin-panel" />
|
|
</div>
|
|
</form>
|
|
{% endif %}
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{% if backgrounds %}
|
|
<div class="field-row settings">
|
|
<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>
|
|
<div class="field-row settings">
|
|
<label>Nominatie quota:</label>
|
|
<span>{{user.profile.quota|floatformat:3}}</span>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|