diff options
| author | Martin Fischer <martin@push-f.com> | 2022-01-31 11:14:48 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-31 11:14:48 +0100 |
| commit | c82b9c68d282a2f674632ce0e0720da85c64a1c4 (patch) | |
| tree | 6ad4efc466077d5ee7504a44dbc07e4b059d6db9 /searx/templates/simple/stats.html | |
| parent | 60e7fee47a2a994f5d1bc0850808787577c9e3cb (diff) | |
| parent | 79dbbd4d99dcb28e709c7bca703ee97b6d55f906 (diff) | |
Merge pull request #843 from not-my-profile/simple-page-with-header
Diffstat (limited to 'searx/templates/simple/stats.html')
| -rw-r--r-- | searx/templates/simple/stats.html | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/searx/templates/simple/stats.html b/searx/templates/simple/stats.html index 1e905790a..f45f5b260 100644 --- a/searx/templates/simple/stats.html +++ b/searx/templates/simple/stats.html @@ -1,7 +1,7 @@ {% from 'simple/icons.html' import icon_big %} {% from '__common__/new_issue.html' import new_issue with context %} -{% extends "simple/base.html" %} +{% extends "simple/page_with_header.html" %} {%- macro th_sort(column_order, column_name) -%} {% if selected_engine_name %} @@ -15,10 +15,7 @@ {% block head %} {% endblock %} {% block content %} - -<a href="{{ url_for('index') }}"><h1><span>SearXNG</span></h1></a> - -<h2>{% if selected_engine_name %}<a href="{{ url_for('stats') }}">{% endif %}{{ _('Engine stats') }}{% if selected_engine_name %}</a> - {{ selected_engine_name }}{% endif %}</h2> +<h1>{% if selected_engine_name %}<a href="{{ url_for('stats') }}">{% endif %}{{ _('Engine stats') }}{% if selected_engine_name %}</a> - {{ selected_engine_name }}{% endif %}</h1> {% if not engine_stats.get('time') %} {{ _('There is currently no data available. ') }} |