Browse Source

[enh] displaying shortcuts at engines page

asciimoo 11 years ago
parent
commit
48dc019b94
2 changed files with 5 additions and 2 deletions
  1. 2 0
      searx/templates/engines.html
  2. 3 2
      searx/webapp.py

+ 2 - 0
searx/templates/engines.html

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

+ 3 - 2
searx/webapp.py

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