Commit 99de6c2f7ab1cc6b772123ea8a3faae92449b19c

Authored by filipecmedeiros
1 parent 0ec70bee

Show text changes to template [Issue #232]

courses/templates/subject/form_view_student.html
... ... @@ -27,7 +27,7 @@
27 27 <div class="presentation">
28 28 <p>
29 29 <i>
30   - {{topic.description|linebreaks}}
  30 + {{topic.description|safe}}
31 31 </i>
32 32 </p>
33 33  
... ...
courses/templates/subject/form_view_teacher.html
... ... @@ -39,7 +39,7 @@
39 39 <div class="presentation_{{topic.slug}}">
40 40 <p>
41 41 <i>
42   - {{topic.description|linebreaks}}
  42 + {{topic.description|safe}}
43 43 </i>
44 44 </p>
45 45 </div>
... ...