]> git.ipfire.org Git - ipfire.org.git/blob - templates/fireinfo/stats-network.html
4aa2bc6a35263f47990893b2371590f771d8853d
[ipfire.org.git] / templates / fireinfo / stats-network.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ _("Networking") }}{% end block %}
4
5 {% block body %}
6 <div class="page-header">
7 <h1>{{ _("Network configuration") }}</h1>
8 </div>
9
10 <p>
11 This chart shows us which is the most favourite network configuration.
12 </p>
13
14 <dl class="dl-horizontal">
15 <dt>{{ _("RED") }}</dt>
16 <dd>{% module ProgressBar(network.has_red) %}</dd>
17
18 <dt>{{ _("GREEN") }}</dt>
19 <dd>{% module ProgressBar(network.has_green) %}</dd>
20
21 <dt>{{ _("ORANGE") }}</dt>
22 <dd>{% module ProgressBar(network.has_orange) %}</dd>
23
24 <dt>{{ _("BLUE") }}</dt>
25 <dd>{% module ProgressBar(network.has_blue) %}</dd>
26 </dl>
27 {% end block %}
28