diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2015-04-07 18:09:38 +0200 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2015-04-07 18:09:38 +0200 |
| commit | 6f73f4e7a41b957bf74494613d035f9140f5f906 (patch) | |
| tree | 3f2579d76d14ea69203e702596d90a139fc4372a /searx/templates/courgette | |
| parent | 79b3de5185bd2a561ffcfd9a1120481af4e8bb91 (diff) | |
[fix] ordered categories in preferences - closes #258
Diffstat (limited to 'searx/templates/courgette')
| -rw-r--r-- | searx/templates/courgette/preferences.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/templates/courgette/preferences.html b/searx/templates/courgette/preferences.html index c25385bc8..2afb74d11 100644 --- a/searx/templates/courgette/preferences.html +++ b/searx/templates/courgette/preferences.html @@ -101,8 +101,8 @@ <th>{{ _('Category') }}</th> <th>{{ _('Allow') }} / {{ _('Block') }}</th> </tr> - {% for (categ,search_engines) in categs %} - {% for search_engine in search_engines %} + {% for categ in categories %} + {% for search_engine in engines_by_category[categ] %} {% if not search_engine.private %} <tr> |