calebasse/calebasse/agenda/templates/agenda/days-not-locked.html @ e5150d7d
| fcfb4f5b | Mikaël Ates | {% extends "agenda/base.html" %}
|
|
{% load url from future %}
|
|||
{% block body-class %}{{ block.super }} no-left-column{% endblock %}
|
|||
{% block appbar %}
|
|||
| ba9e01fa | Mikaël Ates | <h2>Jours non verrouillés</h2>
|
|
| fcfb4f5b | Mikaël Ates | <a href="..">Retourner à l'agenda</a>
|
|
{% endblock %}
|
|||
{% block content %}
|
|||
{% if days_not_locked %}
|
|||
<ul>
|
|||
{% for day in days_not_locked %}
|
|||
<li><a href="../../{{ day.year }}-{{ day.month }}-{{ day.day }}/validation-des-actes">{{ day.day }}/{{ day.month }}/{{ day.year }}</a></li>
|
|||
{% endfor %}
|
|||
</ul>
|
|||
{% endif %}
|
|||
{% endblock %}
|