浏览代码

[enh] displaying shortcuts at engines page

asciimoo 11 年前
父节点
当前提交
48dc019b94
共有 2 个文件被更改,包括 5 次插入2 次删除
  1. 2
    0
      searx/templates/engines.html
  2. 3
    2
      searx/webapp.py

+ 2
- 0
searx/templates/engines.html 查看文件

@@ -6,6 +6,7 @@
6 6
     <table style="width: 80%;">
7 7
         <tr>
8 8
             <th>{{ _('Engine name') }}</th>
9
+            <th>{{ _('Shortcut') }}</th>
9 10
             <th>{{ _('Category') }}</th>
10 11
         </tr>
11 12
     {% for (categ,search_engines) in categs %}
@@ -14,6 +15,7 @@
14 15
             {% if not search_engine.private %}
15 16
             <tr>
16 17
                 <td>{{ search_engine.name }}</td>
18
+                <td>{{ shortcuts[search_engine.name] }}</td>
17 19
                 <td>{{ _(categ) }}</td>
18 20
             </tr>
19 21
             {% endif %}

+ 3
- 2
searx/webapp.py 查看文件

@@ -250,8 +250,9 @@ def list_engines():
250 250
 
251 251
     List of all supported engines.
252 252
     """
253
-    global categories
254
-    return render('engines.html', categs=categories.items())
253
+    return render('engines.html',
254
+                  categs=categories.items(),
255
+                  shortcuts={y:x for x,y in engine_shortcuts.items()})
255 256
 
256 257
 
257 258
 @app.route('/preferences', methods=['GET', 'POST'])