aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/courgette/config.twig
diff options
context:
space:
mode:
Diffstat (limited to 'themes/courgette/config.twig')
-rwxr-xr-xthemes/courgette/config.twig4
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/courgette/config.twig b/themes/courgette/config.twig
index fdeb464b..3ab1d92f 100755
--- a/themes/courgette/config.twig
+++ b/themes/courgette/config.twig
@@ -35,8 +35,8 @@
35 <div class="row"> 35 <div class="row">
36 <label class="col w150p" for="theme">{% trans "Theme:" %}</label> 36 <label class="col w150p" for="theme">{% trans "Theme:" %}</label>
37 <select class="col" id="theme" name="theme"> 37 <select class="col" id="theme" name="theme">
38 {% for theme in themes %} 38 {% for key, theme in themes %}
39 <option value="{{ theme.name }}" {{ theme.current ? 'selected' : '' }}>{{ theme.name }}</option> 39 <option value="{{ key }}" {{ theme.current ? 'selected' : '' }}>{{ theme.name }}</option>
40 {% endfor %} 40 {% endfor %}
41 </select> 41 </select>
42 </div> 42 </div>