2015-06-05 11:39:34 +02:00
|
|
|
{% extends "layout.html" -%}
|
|
|
|
{% set active_page = "profile" -%}
|
|
|
|
|
|
|
|
{% block container %}
|
2020-02-29 17:23:20 +01:00
|
|
|
<h1>{{ current_user.username }}</h1>
|
|
|
|
<h3>Themes</h3>
|
|
|
|
<p><a class="changeThemeButton" id="customTheme">enable custom themes</a></p>
|
|
|
|
<p><a class="changePerformance" id="highPerformance">enable high performance</a></p>
|
|
|
|
<p>
|
|
|
|
<!-- Style attribute due to missing css -->
|
|
|
|
<select name="themes" id="themes_select" onchange="changeTheme()" style="width: 300px;">
|
|
|
|
<option disabled selected value> -- select a theme -- </option>
|
|
|
|
{% for theme in themes_list %}
|
|
|
|
<option value="{{ theme.optid }}">{{ theme }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</p>
|
2015-06-05 11:39:34 +02:00
|
|
|
{% endblock %}
|