From eabb136dcb27deaf2e899f4205cefcb588a28669 Mon Sep 17 00:00:00 2001 From: Alban Gruin Date: Mon, 6 Feb 2017 19:06:58 +0100 Subject: Utilisation d'un word-wrap --- templates/index.html | 1 + 1 file changed, 1 insertion(+) (limited to 'templates') diff --git a/templates/index.html b/templates/index.html index 9e454e3..3170aea 100644 --- a/templates/index.html +++ b/templates/index.html @@ -10,6 +10,7 @@ body { margin: 1em auto; padding: 0 .62em; font: 1.2em/1.62em sans-serif; + word-wrap: break-word; } h1, h2, h3 { -- cgit v1.2.1 From 65eb38093246b6483a427639462d4e55abf7621c Mon Sep 17 00:00:00 2001 From: Alban Gruin Date: Thu, 9 Feb 2017 11:37:46 +0100 Subject: Affichage du type de cours dans l'emploi du temps --- templates/mail/mail_timetable.txt | 2 +- templates/timetable.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'templates') diff --git a/templates/mail/mail_timetable.txt b/templates/mail/mail_timetable.txt index 376aac1..65b5c01 100644 --- a/templates/mail/mail_timetable.txt +++ b/templates/mail/mail_timetable.txt @@ -1,6 +1,6 @@ {% autoescape off %}{% for day in courses %}{% filter title %}{{ day.0.begin|date:"l j F o" }}{% endfilter %} - de {{ day.0.begin|date:"H:i" }} à {% with day|last as last %}{{ last.end|date:"H:i" }}{% endwith %} {% for course in day %} - * {{ course.name }}, de {{ course.begin|date:"H:i" }} à {{ course.end|date:"H:i" }}{% if course.rooms.all|length > 0 %} + * {{ course.name }} ({{ course.type }}), de {{ course.begin|date:"H:i" }} à {{ course.end|date:"H:i" }}{% if course.rooms.all|length > 0 %} Salle{% if course.rooms.all|length > 1 %}s{% endif %} {% for room in course.rooms.all %}{{ room }} {% endfor %}{% endif %} {% endfor %} {% endfor %}{% endautoescape %} diff --git a/templates/timetable.html b/templates/timetable.html index c4d83b0..0d3432c 100644 --- a/templates/timetable.html +++ b/templates/timetable.html @@ -8,7 +8,7 @@

{% filter title %}{{ day.0.begin|date:"l j F o" }}{% endfilter %} – de {{ day.0.begin|date:"H:i" }} à {% with day|last as last %}{{ last.end|date:"H:i" }}{% endwith %}

{% endfor %}

S'abonner à cet emploi du temps

{% endblock %} -- cgit v1.2.1