forked from DGNum/gestioCOF
15 lines
501 B
HTML
15 lines
501 B
HTML
|
<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>
|