a1ccb5af57aed02b585a46e0cf7a1c5d90a8378a
[wolnelektury.git] / src / club / templates / club / stats.html
1 {% extends "base.html" %}
2
3 {% block main %}
4
5
6 <table style="" border="1">
7   <thead>
8     <tr>
9       <th style="width: 200px;"></th>
10       <th style="width: 200px;">PayU</th>
11       <th style="width: 200px;">PayU cykliczne</th>
12       <th style="width: 200px;">PayPal</th>
13     </tr>
14   </thead>
15   <tbody>
16   {% for day, acq in days %}
17   <tr>
18     <td>{{ day }}</td>
19     <td style="position: relative">
20       <span style="z-index: 0; background: #92BD39; position: absolute;left:0; top:0; bottom: 0; width: {{ acq.payu.1 }}%;"></span>
21       <span style="z-index: 1; position: relative;">{{ acq.payu.0 }}</span>
22     </td>
23     <td style="position: relative">
24       <span style="z-index: 0; background: #92BD39; position: absolute;left:0; top:0; bottom: 0; width: {{ acq.payu_re.1 }}%;"></span>
25       <span style="z-index: 1; position: relative;">{{ acq.payu_re.0 }}</span>
26     </td>
27     <td style="position: relative">
28       <span style="z-index: 0; background: #92BD39; position: absolute;left:0; top:0; bottom: 0; width: {{ acq.paypal.1 }}%;"></span>
29       <span style="z-index: 1; position: relative;">{{ acq.paypal.0 }}</span>
30     </td>
31   </tr>
32   {% endfor %}
33   </tbody>
34 </table>
35
36 {% endblock %}