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>
|
|
|
|
<!-- Style attribute due to missing css -->
|
2020-07-17 13:17:53 +02:00
|
|
|
<select name="theme" id="themes_select" style="width: 300px;">
|
|
|
|
<option value="">[Season's default]</option>
|
2020-02-29 17:23:20 +01:00
|
|
|
{% for theme in themes_list %}
|
2020-07-17 13:17:53 +02:00
|
|
|
<option value="{{ theme.file }}">{{ theme.name }}</option>
|
2020-02-29 17:23:20 +01:00
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</p>
|
2020-07-17 13:17:53 +02:00
|
|
|
<p><a class="changePerformance" id="heavy"></a></p>
|
2015-06-05 11:39:34 +02:00
|
|
|
{% endblock %}
|