]> git.mxchange.org Git - fba.git/blob - templates/views/scoreboard.html
Continued:
[fba.git] / templates / views / scoreboard.html
1 {% extends "base.html" %}
2
3 {% block title %}Scoreboard - {% if mode == 'software' %}TOP {{amount}} used software{% elif mode == 'detection_mode' %}Detection mode statistics{% elif mode == 'block_level' %}TOP {{amount}} block level statistics{% elif mode == 'obfuscation' %}Obfuscation statistics{% elif mode == 'obfuscator' %}TOP {{amount}} obfuscating software{% elif mode == 'avg_peers' %}TOP {{amount}} average peer count{% elif mode == 'command' %}TOP {{amount}} commands{% elif mode == 'error_code' %}TOP {{amount}} error codes{% elif mode == 'reference' %}TOP {{amount}} referencing instances{% elif mode == 'blocked' %}TOP {{amount}} deferated instances{% elif mode == 'blocker' %}TOP {{amount}} deferating instances{% endif %}{% endblock %}
4
5 {% block header %}
6     {% if mode == 'blocker' %}
7         <h1>Top {{amount}} defederating instances</h1>
8     {% elif mode == 'blocked' %}
9         <h1>Top {{amount}} defederated instances</h1>
10     {% elif mode == 'reference' %}
11         <h1>Top {{amount}} referencing instances</h1>
12     {% elif mode == 'software' %}
13         <h1>Top {{amount}} used software</h1>
14     {% elif mode == 'command' %}
15         <h1>TOP {{amount}} commands</h1>
16     {% elif mode == 'error_code' %}
17         <h1>TOP {{amount}} error codes</h1>
18     {% elif mode == 'detection_mode' %}
19         <h1>Detection mode statistics</h1>
20     {% elif mode == 'avg_peers' %}
21         <h1>TOP {{amount}} average peer count</h1>
22     {% elif mode == 'obfuscator' %}
23         <h1>TOP {{amount}} obfuscating software</h1>
24     {% elif mode == 'obfuscation' %}
25         <h1>Obfuscation statistics</h1>
26     {% elif mode == 'block_level' %}
27         <h1>TOP {{amount}} block levels</h1>
28     {% endif %}
29 {% endblock %}
30
31 {% block content %}
32     <div class="scoreboard">
33         <table class="table-with-rows">
34             <thead>
35                 <th>№</th>
36                 <th>{% if mode in ('software', 'avg_peers', 'obfuscator') %}Software{% elif mode == 'obfuscation' %}Obfuscation status{% elif mode == 'detection_mode' %}Detection mode{% elif mode == 'error_code' %}Error code{% else %}Instance{% endif %}</th>
37                 <th>{% if mode == 'reference' %}References{% elif mode == 'avg_peers' %}Average{% elif mode in('software', 'error_code', 'obfuscator', 'obfuscation', 'block_level', 'detection_mode') %}Total{% else %}Blocks{% endif %}</th>
38             </thead>
39
40             <tbody>
41             {% for entry in scores %}
42                 <tr>
43                     <td>{{loop.index}}</td>
44                     <td>
45                         {% if mode in ('error_code', 'avg_peers', 'obfuscator', 'obfuscation') %}
46                             {{entry['domain']}}
47                         {% elif entry['domain'] == None %}
48                             -
49                         {% elif mode == 'block_level' %}
50                             <a href="top?mode={{mode}}&amp;value={{entry['domain']}}&amp;amount=50">{{entry['domain']}}</a>
51                         {% elif mode in ('software', 'detection_mode', 'command') %}
52                             <a href="list?mode={{mode}}&amp;value={{entry['domain']}}&amp;amount=50">{{entry['domain']}}</a>
53                         {% else %}
54                             {% with domain=entry['domain'] %}
55                             {% include "widgets/links.html" %}
56                             {% endwith %}
57                         {% endif %}
58                     </td>
59                     <td>{{entry['score']}}</td>
60                 </tr>
61             {% endfor %}
62             </tbody>
63         </table>
64     </div>
65 {% endblock %}
66
67 {% block footer %}
68     {% if mode == 'error_code' %}
69         <div class="notice">
70             <h3>Error codes:</h3>
71             <ul>
72                 <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>
73             </ul>
74         </div>
75     {% elif mode == 'detection_mode' %}
76         <div class="notice">
77             <h3>Detection modes:</h3>
78             <div>
79                 Detection is done in following order:
80             </div>
81             <ol>
82                 <li><b>AUTO_DISCOVERY</b>: <code>/.well-known/nodeinfo</code> was reachable and software type was found in nodeinfo response</li>
83                 <li><b>STATIC_CHECK</b>: Node information was found by probing for well-known URLs</li>
84                 <li><b>GENERATOR</b>: Meta data <code>generator</code> was found in HTML code</li>
85                 <li><b>PLATFORM</b>: Meta data <code>og:platform</code> was found in HTML code</li>
86                 <li><b>SITE_NAME</b>: Meta data <code>og:site_name</code> was found in HTML code</li>
87                 <li><b>None</b>: the instance was not reachable or the used software was not stated</li>
88             </ol>
89         </div>
90     {% elif mode == 'obfuscation' %}
91         <div class="notice">
92             <h3>Obfuscation status:</h3>
93             <ul>
94                 <li>Only supported networks are counted here.</li>
95                 <li><b>None</b> means not determined yet or erroneous.</li>
96             </ul>
97         </div>
98     {% endif %}
99     <a href="{{base_url}}/">Index</a> /
100     {{ super() }}
101 {% endblock %}