diff options
author | Alban Gruin | 2018-04-25 09:35:18 +0200 |
---|---|---|
committer | Alban Gruin | 2018-04-25 09:35:18 +0200 |
commit | fb3a3bc214b071083325a75a9546331150eaa8a5 (patch) | |
tree | 908c2e4d5d3e65324e22d2df554139f9fe58f64d /templates/index.html | |
parent | 60e3b389d065746d61906f91327867bfd5ed582c (diff) |
templates: abstraction des listes de groupes/salles/semaines
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/index.html b/templates/index.html index cdab591..e86038e 100644 --- a/templates/index.html +++ b/templates/index.html @@ -16,7 +16,7 @@ <h3>{% block pagetitle %}{% endblock %}</h3> <ul> {% for element in elements %} - <li><a href="{% block url %}{% endblock %}">{% block element %}{{ element }}{% endblock %}</a></li> + <li>{% block lelement %}<a href="{% block url %}{% endblock %}">{% block element %}{{ element }}{% endblock %}</a>{% endblock %}</li> {% empty %} <p><em>{% block empty %}Aucun emploi du temps à afficher{% endblock %}</em></p> {% endfor %} |