diff options
author | Mathieu Brunot <mathieu.brunot@monogramm.io> | 2019-10-29 23:53:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-29 23:53:08 +0100 |
commit | e9d90d06a9343bdfa26c6993bb3fcc3cf17ac3ac (patch) | |
tree | 2d882ae8a7c383c8800dd75098864b3a28a741f8 /searx/templates | |
parent | a51b2b6c20c1346748c09aec051d78f6822c580c (diff) | |
parent | 4e029b023a27580f8ae443645a8ae45b30f5f747 (diff) | |
download | searxng-e9d90d06a9343bdfa26c6993bb3fcc3cf17ac3ac.tar.gz searxng-e9d90d06a9343bdfa26c6993bb3fcc3cf17ac3ac.zip |
Merge branch 'master' into feature/accessibility
Diffstat (limited to 'searx/templates')
-rw-r--r-- | searx/templates/oscar/results.html | 4 | ||||
-rw-r--r-- | searx/templates/simple/results.html | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/searx/templates/oscar/results.html b/searx/templates/oscar/results.html index 9a95265b9..fce7f97d6 100644 --- a/searx/templates/oscar/results.html +++ b/searx/templates/oscar/results.html @@ -22,8 +22,8 @@ <span class="result_header text-muted form-inline pull-left suggestion_item">{{ _('Try searching for:') }}</span>
{% for correction in corrections %}
<form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" role="navigation" class="form-inline pull-left suggestion_item">
- <input type="hidden" name="q" value="{{ query_prefix + correction }}">
- <button type="submit" class="btn btn-default btn-xs">{{ correction }}</button>
+ <input type="hidden" name="q" value="{{ correction.url }}">
+ <button type="submit" class="btn btn-default btn-xs">{{ correction.title }}</button>
</form>
{% endfor %}
</div>
diff --git a/searx/templates/simple/results.html b/searx/templates/simple/results.html index 770eebe81..8885abc30 100644 --- a/searx/templates/simple/results.html +++ b/searx/templates/simple/results.html @@ -95,13 +95,13 @@ {% for correction in corrections %} <div class="left"> <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" role="navigation"> - <input type="hidden" name="q" value="{{ correction }}"> + <input type="hidden" name="q" value="{{ correction.url }}"> <input type="hidden" name="time_range" value="{{ time_range }}"> <input type="hidden" name="language" value="{{ current_language }}"> <input type="hidden" name="safesearch" value="{{ safesearch }}"> <input type="hidden" name="theme" value="{{ theme }}"> {% if timeout_limit %}<input type="hidden" name="timeout_limit" value="{{ timeout_limit }}" >{% endif %} - <input type="submit" value="{{ correction }}"> + <input type="submit" value="{{ correction.title }}"> </form> </div> {% endfor %} |