1
0
mirror of https://github.com/searxng/searxng.git synced 2024-10-02 09:30:13 +02:00

Merge pull request #630 from not-my-profile/engine-count

[doc] say how many engines are supported / enabled
This commit is contained in:
Markus Heiser 2021-12-21 13:11:37 +01:00 committed by GitHub
commit e869e3089c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -14,6 +14,8 @@ Explanation of the :ref:`general engine configuration` shown in the table
.. jinja:: searx
SearXNG supports {{engines | length}} search engines (of which {{enabled_engine_count}} are enabled by default).
{% for category, engines in engines.items() | groupby('1.categories.0') %}
{{category}} search engines

View File

@ -47,6 +47,7 @@ jinja_contexts = {
'version': {
'node': os.getenv('NODE_MINIMUM_VERSION')
},
'enabled_engine_count': sum(not x.disabled for x in searx.engines.engines.values()),
},
}
jinja_filters = {