forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2022-04-17 19:54:18 +02:00
parent 252d3df198
commit be051766cc
1 changed files with 2 additions and 2 deletions

View File

@ -170,9 +170,9 @@
<div class="body w-lg-100"> <div class="body w-lg-100">
<p>Change the background for the website.</p> <p>Change the background for the website.</p>
<div class="input-group mb2"> <div class="input-group mb2">
<select autocomplete="off" id='backgroundSelector' class="form-control" form="profile-settings" name="background" onchange="updatebgselection();"> <select autocomplete="off" id='backgroundSelector' class="form-control" form="profile-settings" name="background" onchange="updatebgselection();">
{% for entry in ["anime", "fantasy", "solarpunk", "pixelart"] %} {% for entry in ["anime", "fantasy", "solarpunk", "pixelart"] %}
<option value="{{entry}}"> <option value="{{entry}}" {% if v.background and v.background.startswith(entry) %}selected{% endif %}>
{{entry}} {{entry}}
</option> </option>
{% endfor %} {% endfor %}