aboutsummaryrefslogtreecommitdiff
path: root/templates/mail
diff options
context:
space:
mode:
Diffstat (limited to 'templates/mail')
-rw-r--r--templates/mail/mail_confirm.txt9
-rw-r--r--templates/mail/mail_footer.txt1
-rw-r--r--templates/mail/mail_timetable.txt6
3 files changed, 16 insertions, 0 deletions
diff --git a/templates/mail/mail_confirm.txt b/templates/mail/mail_confirm.txt
new file mode 100644
index 0000000..77849a0
--- /dev/null
+++ b/templates/mail/mail_confirm.txt
@@ -0,0 +1,9 @@
+Vous avez été inscrit sur l'emploi du temps {{ group.timetable.name }} - {{ group.name }}
+
+Si pour valider l'abonnement, suivez ce lien : {% url "confirm" token %}
+
+Si vous pensez que vous avez été inscrit par erreur, suivez ce lien : {% url "cancel" token %}
+
+Vous ne recevrez aucun mail tant que vous n'avez pas validé votre abonnement.
+
+{% include "mail/mail_footer.txt" %}
diff --git a/templates/mail/mail_footer.txt b/templates/mail/mail_footer.txt
new file mode 100644
index 0000000..004abe5
--- /dev/null
+++ b/templates/mail/mail_footer.txt
@@ -0,0 +1 @@
+{# Pour vous désinscrire de cet emploi du temps, suivez ce lien : {% url "cancel" token %} #}Pour contacter l'administrateur du service, envoyez un mail à cette adresse : {{ admins|first|last }}
diff --git a/templates/mail/mail_timetable.txt b/templates/mail/mail_timetable.txt
new file mode 100644
index 0000000..dcc07d1
--- /dev/null
+++ b/templates/mail/mail_timetable.txt
@@ -0,0 +1,6 @@
+{% autoescape off %}{% for day in courses %}{{ day.0.begin|date:"l j F o" }} - 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 %}
+ Salle{% if course.rooms.all|length > 1 %}s{% endif %} {% for room in course.rooms.all %}{{ room }} {% endfor %}{% endif %}
+{% endfor %}
+{% endfor %}{% endautoescape %}