forked from DGNum/gestioCOF
Nouvelles couleurs, Plus de templates, Calendrier (sommaire)
This commit is contained in:
parent
f5778fed2a
commit
53658589f8
11 changed files with 330 additions and 44 deletions
14
gestioncof/cms/templates/cofcms/calendar.html
Normal file
14
gestioncof/cms/templates/cofcms/calendar.html
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue