remotes/1693045480750635534/spooky-22
Aevann1 2022-01-19 11:25:37 +02:00
parent 758fdc915b
commit 4032509965
2 changed files with 2 additions and 2 deletions

View File

@ -330,7 +330,7 @@ def settings_profile_post(v):
theme = request.values.get("theme")
if theme:
if theme in ["drambler","classic","transparent", "win98", "dark", "light", "coffee", "tron", "4chan", "midnight"]:
if theme in ["dramablr","classic","transparent", "win98", "dark", "light", "coffee", "tron", "4chan", "midnight"]:
if theme == "transparent" and not v.background:
return {"error": "You need to set a background to use the transparent theme!"}
v.theme = theme

View File

@ -92,7 +92,7 @@
<p>Change the theme for the website.</p>
<div class="input-group mb2">
<select autocomplete="off" id='theme' class="form-control" form="profile-settings" name="theme" onchange="post_toast('/settings/profile?theme='+document.getElementById('theme').value, '1')">
{% for entry in ["drambler","classic","transparent", "win98", "dark", "light", "coffee", "tron", "4chan", "midnight"] %}
{% for entry in ["dramablr","classic","transparent", "win98", "dark", "light", "coffee", "tron", "4chan", "midnight"] %}
<option value="{{entry}}" {% if v.theme==entry %} selected {% endif %}>
{{entry}}
</option>