]> git.ipfire.org Git - ipfire.org.git/blob - templates/modules/stasy-table.html
Remove obsolete pakfire CGI scripts.
[ipfire.org.git] / templates / modules / stasy-table.html
1 <table class="table table-fireinfo">
2 {% for k, v in items %}
3 <tr>
4 <td class="key">
5 {% if flags %}
6 <img src="{{ static_url("images/flags/%s.png" % k) }}" />
7 {% end %}
8 {{ k }}
9 </td>
10 <td class="bar">
11 <div class="progress">
12 <div class="bar" style="{{ "width: %.2f%%" % v }}"></div>
13 </div>
14 </td>
15 <td class="val">{{ "%.2f" % v }}%</td>
16 </tr>
17 {% end %}
18 </table>