diff options
author | MrPaulBlack <paul.accounts@protonmail.com> | 2021-09-12 10:37:21 +0200 |
---|---|---|
committer | MrPaulBlack <paul.accounts@protonmail.com> | 2021-09-12 10:37:21 +0200 |
commit | 48d4296caafb0dfbef0f6a603f53b3d938b92b69 (patch) | |
tree | 0dfedcb35254c1807d6dc95ef10b8438249faaee | |
parent | ecd6ca86d0ebe6a41902e8c980de46c5d0600eb6 (diff) | |
download | searxng-48d4296caafb0dfbef0f6a603f53b3d938b92b69.tar.gz searxng-48d4296caafb0dfbef0f6a603f53b3d938b92b69.zip |
[theme] link to engine stats in footer
-rw-r--r-- | searx/templates/oscar/base.html | 1 | ||||
-rw-r--r-- | searx/templates/simple/base.html | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/searx/templates/oscar/base.html b/searx/templates/oscar/base.html index 7cd38a25c..df06763fa 100644 --- a/searx/templates/oscar/base.html +++ b/searx/templates/oscar/base.html @@ -85,6 +85,7 @@ {{ _('Powered by') }} <a href="{{ get_setting('brand.docs_url') }}">SearXNG</a> - {{ searx_version }} - {{ _('a privacy-respecting, hackable metasearch engine') }}<br/> <a href="{{ searx_git_url }}">{{ _('Source code') }}</a> | <a href="{{ get_setting('brand.issue_url') }}">{{ _('Issue tracker') }}</a> | + <a href="{{ url_for('stats') }}">{{ _('Engine stats') }}</a> | <a href="{{ get_setting('brand.public_instances') }}">{{ _('Public instances') }}</a>{% if get_setting('general.contact_url') %} | <a href="{{ get_setting('general.contact_url') }}">{{ _('Contact instance maintainer') }}</a>{% endif %} </small> diff --git a/searx/templates/simple/base.html b/searx/templates/simple/base.html index 7020de756..27c4b5a4c 100644 --- a/searx/templates/simple/base.html +++ b/searx/templates/simple/base.html @@ -53,6 +53,7 @@ {{ _('Powered by') }} <a href="{{ url_for('about') }}">searxng</a> - {{ searx_version }} — {{ _('a privacy-respecting, hackable metasearch engine') }}<br/> <a href="{{ searx_git_url }}">{{ _('Source code') }}</a> | <a href="{{ get_setting('brand.issue_url') }}">{{ _('Issue tracker') }}</a> | + <a href="{{ url_for('stats') }}">{{ _('Engine stats') }}</a> | <a href="{{ get_setting('brand.public_instances') }}">{{ _('Public instances') }}</a>{% if get_setting('general.contact_url') %} | <a href="{{ get_setting('general.contact_url') }}">{{ _('Contact instance maintainer') }}</a>{% endif %} </p> |