2015-06-05 11:39:34 +02:00
|
|
|
{% extends "layout.html" -%}
|
|
|
|
{% set active_page = "profile" -%}
|
|
|
|
|
|
|
|
{% block container %}
|
|
|
|
<h1>{{ current_user.username }}</h1>
|
2019-10-30 23:40:36 +01:00
|
|
|
<h3>Themes</h3>
|
2019-11-21 10:52:08 +01:00
|
|
|
<p><a class="changeThemeButton" id="customTheme">enable custom themes</a></p>
|
2019-12-05 19:39:35 +01:00
|
|
|
<p><a class="changePerformance" id="highPerformance">enable high performance</a></p>
|
2019-12-17 22:24:29 +01:00
|
|
|
<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 %}
|