-{% load i18n %}{% blocktrans %}{{ gender }} {{ last_name }},
+{% load i18n %}{% autoescape off %}{% blocktrans %}{{ gender }} {{ last_name }},
We are sorry we cannot validate your answer n°{{ rank }} of the e-learning seminar " {{ title }} ".
We remind you that you absolutely need to terminate your training before {{ date }}.
The team of the {{ organization }} thank you for your confidence and we remain at your disposal for further information.
-{% endblocktrans %}
\ No newline at end of file
+{% endblocktrans %}{% endautoescape %}
\ No newline at end of file
-{% load i18n %}{% blocktrans %}{{ gender }} {{ last_name }},
+{% load i18n %}{% autoescape off %}{% blocktrans %}{{ gender }} {{ last_name }},
Your answer to the question n°{{ rank }} of the e-learning seminar " {{ title }} " has been validated.
We remind you that you absolutely need to terminate all steps of your training before {{ date }}.
The team of the {{ organization }} thank you for your confidence and we remain at your disposal for further information.
-{% endblocktrans %}
+{% endblocktrans %}{% endautoescape %}
'pk': answer.question.pk})
if seminar.sub_title:
- title = unicode(seminar.sub_title) + ' : ' + seminar.title
+ title = seminar.sub_title + ' : ' + seminar.title
else:
title = seminar.title
organization = seminar.course.department.name
if answer.question.seminar.sub_title:
- title = unicode(seminar.sub_title) + ' : ' + seminar.title
+ title = seminar.sub_title + ' : ' + seminar.title
else:
title = seminar.title