]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Thu, 8 Jun 2023 18:52:18 +0000 (20:52 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 8 Jun 2023 18:52:18 +0000 (20:52 +0200)
- explained error code 999
- added missing header for this scoreboard

templates/views/scoreboard.html

index 451cc434b6667465fa046a6fd3f54dc455819011..bf5852df0d919fa7027d1fa26abad8ea2f111cdb 100644 (file)
@@ -13,6 +13,8 @@
         <h1>Top {{software}} used software</h1>
     {% elif originator %}
         <h1>TOP {{originator}} scripts</h1>
+    {% elif error_code %}
+        <h1>TOP {{error_code}} error codes</h1>
     {% endif %}
 {% endblock %}
 
 {% endblock %}
 
 {% block footer %}
+    {% if error_code %}
+        <h2>Please note to error codes:</h2>
+        <ul>
+            <li>Error code 999 is fake and covers a lot of reasons why the domain/instance is not reachable. Mostly that the domain is not resolvable or the server refused connection.</li>
+        </ul>
+    {% endif %}
     <a href="{{base_url}}/">Index</a> /
     {{ super() }}
 {% endblock %}