##// END OF EJS Templates
Added themes support. Added 'snow white' theme by Mystra_x64.
Added themes support. Added 'snow white' theme by Mystra_x64.

File last commit:

r35:4962ee48 default
r35:4962ee48 default
Show More
settings.html
28 lines | 843 B | text/html | HtmlLexer
{% extends "base.html" %}
{% load i18n %}
{% block head %}
<title>Neboard settings</title>
{% endblock %}
{% block content %}
<div class="post-form">
<span class="form-title">{% trans "Theme" %}</span>
<form method="post">{% csrf_token %}
{% for choice in form.fields.theme.choices %}
<input type="radio" name="theme"
id="{{ choice.0 }}"
value="{{ choice.0 }}"
{% ifequal form.initial.theme choice.0 %}
checked
{% endifequal %}
/>
<label for="{{ choice.0 }}">{{ choice.1 }}
</label><br />
{% endfor %}
<input type="submit" value="{% trans "Save" %}" />
</form>
</div>
{% endblock %}