From 7c0a04bf45fc768f97fa8b6c31ca2ccbe310ddf6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Fri, 23 Jun 2023 19:37:44 +0200 Subject: [PATCH] Continued: - renamed "indexed" to "supported" as this is more obvious (and true, too) --- api.py | 2 +- templates/views/index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api.py b/api.py index c7e47a7..c3c7990 100644 --- a/api.py +++ b/api.py @@ -46,7 +46,7 @@ def api_info(): return { "known_instances" : row[0], - "indexed_instances" : row[1], + "supported_instances": row[1], "blocks_recorded" : row[2], "erroneous_instances": row[3], "slogan" : config.get("slogan"), diff --git a/templates/views/index.html b/templates/views/index.html index 91a714b..79a0cd4 100644 --- a/templates/views/index.html +++ b/templates/views/index.html @@ -42,7 +42,7 @@

Infos:

known instances: {{info.known_instances}}
- indexed instances: {{info.indexed_instances}}
+ supported instances: {{info.supported_instances}}
blocks recorded: {{info.blocks_recorded}}
erroneous instances: {{info.erroneous_instances}}

-- 2.39.5