]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Fri, 23 Jun 2023 17:37:44 +0000 (19:37 +0200)
committerRoland Häder <roland@mxchange.org>
Fri, 23 Jun 2023 17:38:51 +0000 (19:38 +0200)
- renamed "indexed" to "supported" as this is more obvious (and true, too)

api.py
templates/views/index.html

diff --git a/api.py b/api.py
index c7e47a70f3cdec8b15e1198857cc62fd6c68b872..c3c7990c4dcf6d4f54203414790789473e84888d 100644 (file)
--- 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"),
index 91a714b9989c45416057c8df9131f992ed74fa57..79a0cd40553a369d59c4f90aedc71acd79b23649 100644 (file)
@@ -42,7 +42,7 @@
     <h2>Infos:</h2>
     <p>
         known instances: {{info.known_instances}}<br/>
-        indexed instances: {{info.indexed_instances}}<br/>
+        supported instances: {{info.supported_instances}}<br/>
         blocks recorded: {{info.blocks_recorded}}<br/>
         erroneous instances: {{info.erroneous_instances}}<br/>
     </p>