diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2014-01-28 11:19:06 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2014-01-28 11:19:06 +0100 |
commit | f4fbfaa7cbaaf07aae7d8f0533d293fa4dc605cc (patch) | |
tree | 6abda8e30037bd3033c8142d7592e62988fc7eed /themes/courgette/config.twig | |
parent | 21f50d5a08381d0d2f27d36b0d97a4f518eeefcb (diff) | |
download | wallabag-f4fbfaa7cbaaf07aae7d8f0533d293fa4dc605cc.tar.gz wallabag-f4fbfaa7cbaaf07aae7d8f0533d293fa4dc605cc.tar.zst wallabag-f4fbfaa7cbaaf07aae7d8f0533d293fa4dc605cc.zip |
some fix to courgette theme
Diffstat (limited to 'themes/courgette/config.twig')
-rwxr-xr-x | themes/courgette/config.twig | 4 |
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> |