Nouvelles couleurs, Plus de templates, Calendrier (sommaire)

This commit is contained in:
Evarin 2017-08-20 00:39:19 +02:00
parent f5778fed2a
commit 53658589f8
11 changed files with 330 additions and 44 deletions

View file

@ -0,0 +1,14 @@
<table class="calendar">
<tbody>
<tr><th>L</th><th>M</th><th>M</th><th>J</th><th>V</th><th>S</th><th>D</th></tr>
{% for week in weeks %}
<tr>
{% for day in week %}
<td class="{{ day.class }}">
{% if day.events %}<a href="javascript:void(0)">{{ day.day }}</a>{% else %}{{ day.day }}{% endif %}
</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>