summaryrefslogtreecommitdiff
path: root/searx
diff options
context:
space:
mode:
authorBnyro <bnyro@tutanota.com>2026-06-26 16:57:38 +0200
committerBnyro <bnyro@tutanota.com>2026-07-15 17:44:11 +0200
commit4a9c19d7bf8cb05a01bd2ee9c0513d54936ff6a5 (patch)
treea004ca71bf8399fb949100eb15bd3c03e6f1200c /searx
parent5cb4cb2bc524d120b0c1a58b556abf576fb39a06 (diff)
[mod] images.html: display all engines that found the result, not only the first one
Diffstat (limited to 'searx')
-rw-r--r--searx/templates/simple/result_templates/images.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/simple/result_templates/images.html b/searx/templates/simple/result_templates/images.html
index 31ee663c2..bd6cf4730 100644
--- a/searx/templates/simple/result_templates/images.html
+++ b/searx/templates/simple/result_templates/images.html
@@ -60,7 +60,7 @@
</p>
<p class="result-filesize">{{ _label(_("Filesize"), result.filesize) }}</p>
<p class="result-source">{{ _label(_("Source"), result.source) }}</p>
- <p class="result-engine">{{ _label(_("Engine"), result.engine) }}</p>
+ <p class="result-engines">{{ _label(_("Engines"), ", ".join(result.engines)) }}</p>
<p class="result-url"><span>{{ _("View source") }}:</span>{{- "" -}}
<a {{ _target(results_on_new_tab) }} href="{{ result.url }}">{{ result.url }}</a>
</p>