mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
fix(frontend): Improve results page
This commit is contained in:
parent
89909f06af
commit
33f9b03bc1
1 changed files with 15 additions and 14 deletions
|
@ -33,20 +33,21 @@
|
|||
{%- endif %}
|
||||
|
||||
<div id="sidebar">
|
||||
|
||||
<div id="results_info">
|
||||
<details class="sidebar-collapsable">
|
||||
<summary class="title">
|
||||
{%- if number_of_results != '0' -%}
|
||||
<details>
|
||||
<summary>
|
||||
<small id="result_count">{{ _('Number of results') }}: {{ number_of_results }}</small>
|
||||
<small id="result_count">{{ _('Number of results') }}: {{ number_of_results }}; </small>
|
||||
{%- endif -%}
|
||||
<small>{{ longest_load_time_formatted }}</small>
|
||||
</summary>
|
||||
<ul>
|
||||
{% for engine, timing in loading_times %}
|
||||
<li>{{ engine }}: {{ timing }}</li>
|
||||
<li>{{ engine }}: <b>{{ timing }}</b></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</details>
|
||||
{%- endif -%}
|
||||
</div>
|
||||
|
||||
{%- if infoboxes -%}
|
||||
<div id="infoboxes">
|
||||
|
|
Loading…
Add table
Reference in a new issue