Projet

Général

Profil

Télécharger (514 octets) Statistiques
| Branche: | Tag: | Révision:

calebasse / calebasse / agenda / templates / agenda / days-not-locked.html @ fbfab2cc

1
{% extends "agenda/base.html" %}
2
{% load url from future %}
3

    
4
{% block body-class %}{{ block.super }} no-left-column{% endblock %}
5

    
6
{% block appbar %}
7
<h2>Jours non verrouillés</h2>
8
    <a href="..">Retourner à l'agenda</a>
9
{% endblock %}
10

    
11
{% block content %}
12
{% if days_not_locked %}
13
<ul>
14
{% for day in days_not_locked %}
15
    <li><a href="../../{{ day.year }}-{{ day.month }}-{{ day.day }}/validation-des-actes">{{ day.day }}/{{ day.month }}/{{ day.year }}</a></li>
16
{% endfor %}
17
</ul>
18
{% endif %}
19
{% endblock %}
(9-9/18)