Project

General

Profile

Download (514 Bytes) Statistics
| Branch: | Tag: | Revision:

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

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 vérouillé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 %}
(6-6/13)