diff options
author | Bnyro <bnyro@tutanota.com> | 2023-08-08 18:12:07 +0200 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarIT.de> | 2023-08-18 19:07:14 +0200 |
commit | 13d801b75d012a7a7a76440e1d2a51ed2ae03171 (patch) | |
tree | 4c9235dc528d360b68e21916a789b32fe560a371 /searx | |
parent | 9100a48541f469df2973d3d42e8ed8f6bba4fac1 (diff) | |
download | searxng-13d801b75d012a7a7a76440e1d2a51ed2ae03171.tar.gz searxng-13d801b75d012a7a7a76440e1d2a51ed2ae03171.zip |
[feat] results: show source of suggested answer
Diffstat (limited to 'searx')
-rw-r--r-- | searx/static/themes/simple/src/less/style.less | 12 | ||||
-rw-r--r-- | searx/templates/simple/results.html | 9 | ||||
-rwxr-xr-x | searx/webapp.py | 3 |
3 files changed, 18 insertions, 6 deletions
diff --git a/searx/static/themes/simple/src/less/style.less b/searx/static/themes/simple/src/less/style.less index 366b4d580..ccfc221a2 100644 --- a/searx/static/themes/simple/src/less/style.less +++ b/searx/static/themes/simple/src/less/style.less @@ -633,6 +633,18 @@ summary.title { span { overflow-wrap: anywhere; } + + .answer { + display: flex; + flex-direction: column; + } + + .answer-url { + margin-left: auto; + margin-top: 5px; + margin-right: 10px; + margin-bottom: 10px; + } } #infoboxes { diff --git a/searx/templates/simple/results.html b/searx/templates/simple/results.html index c472d585c..42ad3fa3d 100644 --- a/searx/templates/simple/results.html +++ b/searx/templates/simple/results.html @@ -23,11 +23,10 @@ <div id="answers" role="complementary" aria-labelledby="answers-title"><h4 class="title" id="answers-title">{{ _('Answers') }} : </h4> {%- for answer in answers.values() -%} <div class="answer"> - {% if answer.url %} - <a href="{{ answer.url }}">{{ answer.answer }}</a> - {% else %} - <span>{{ answer.answer }}</span> - {% endif %} + <span>{{ answer.answer }}</span> + {% if answer.url -%} + <a href="{{ answer.url }}" class="answer-url">{{ urlparse(answer.url).hostname }}</a> + {% endif -%} </div> {%- endfor -%} </div> diff --git a/searx/webapp.py b/searx/webapp.py index 59c1dd1a1..9793ee534 100755 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -22,7 +22,7 @@ from typing import List, Dict, Iterable import urllib import urllib.parse -from urllib.parse import urlencode, unquote +from urllib.parse import urlencode, urlparse, unquote import httpx @@ -444,6 +444,7 @@ def render(template_name: str, **kwargs): } ) ) + kwargs['urlparse'] = urlparse # scripts from plugins kwargs['scripts'] = set() |