]> git.ipfire.org Git - ipfire.org.git/blobdiff - www/templates/modules/stasy-table-geo.html
Website update.
[ipfire.org.git] / www / templates / modules / stasy-table-geo.html
index 231369ad705c18c9cf05f4ef95c8df645ba7236a..90d2e8ec4d47a15e0365c3755f0454739a6ee3e0 100644 (file)
@@ -1,13 +1,16 @@
-<table class="stats">
+<table class="table table-fireinfo">
        {% for country in countries %}
                <tr>
                        <td class="key">
                                <img src="{{ static_url("images/flags/%s.png" % country.code) }}" />
                                {{ country.name }}
                        </td>
-                       <td class="bar"><p style="{{ "width: %.2f%%" % country.value }}">&nbsp;</p></td>
-                       <td class="value">{{ "%.2f" % country.value }}%</td>
+                       <td class="bar">
+                               <div class="progress">
+                                       <div class="bar" style="{{ "width: %.2f%%" % country.value }}"></div>
+                               </div>
+                       </td>
+                       <td class="val">{{ "%.2f" % country.value }}%</td>
                </tr>
        {% end %}
 </table>
-<br class="clear" />