Project

General

Profile

Download (637 Bytes) Statistics
| Branch: | Tag: | Revision:

calebasse / calebasse / statistics / templates / statistics / index.html @ b16a4439

1
{% extends "statistics/base.html" %}
2
{% load url from future %}
3

    
4
{% block header %}
5
  {{ block.super }}
6
  <span>Statistiques - {{ service_name }}</span>
7
{% endblock %}
8

    
9
{% block appbar %}
10
  <h2>Statistiques</h2>
11
  <a href="/">Retourner à l'accueil</a>
12
{% endblock %}
13

    
14
{% block content %}
15
    <ul>
16
     {% for category, stats in statistics.iteritems %}
17
         <h3>{{ category }}</h3>
18
         {% for n, dn in stats %}
19
         <button id="{{ n }}" class="stats">{{ dn }}</button><br/>
20
         {% endfor %}
21
     {% endfor %}
22
    </ul>
23
{% endblock %}
24

    
25
{% block dialogs %}
26
<div id="ajax-dlg" style="display: none;"></div>
27
{% endblock %}
(4-4/4)