New Theme, Pix-art.

First commit
This commit is contained in:
Cqoicebordel 2015-02-15 19:09:17 +01:00
parent 3ff269c84c
commit d740e7384a
22 changed files with 1182 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{% extends "default/base.html" %}
{% block head %} {% endblock %}
{% block content %}
<h2>{{ _('Engine stats') }}</h2>
{% for stat_name,stat_category in stats %}
<div class="left">
<table>
<tr colspan="3">
<th>{{ stat_name }}</th>
</tr>
{% for engine in stat_category %}
<tr>
<td>{{ engine.name }}</td>
<td>{{ '%.02f'|format(engine.avg) }}</td>
<td class="percentage"><div style="width: {{ engine.percentage }}%">&nbsp;</div></td>
</tr>
{% endfor %}
</table>
</div>
{% endfor %}
{% endblock %}