diff --git a/atlas/templates/atlas/case_display_block.html b/atlas/templates/atlas/case_display_block.html index b8774bb2..c60420e7 100755 --- a/atlas/templates/atlas/case_display_block.html +++ b/atlas/templates/atlas/case_display_block.html @@ -20,11 +20,11 @@

-

History: {{ case.history }}

+

History: {{ case.history |linebreaks}}

-

Discussion: {{ case.discussion }}

+

Discussion: {{ case.discussion |linebreaks}}

-

Report: {{ case.report }}

+

Report: {{ case.report |linebreaks}}

Resource
{% for caseresource in case.caseresource_set.all %} {{caseresource.resource.name}} {% if caseresource.pre_review %} diff --git a/atlas/templates/atlas/collection_case_view_take.html b/atlas/templates/atlas/collection_case_view_take.html index 13fb577f..4b2365d4 100644 --- a/atlas/templates/atlas/collection_case_view_take.html +++ b/atlas/templates/atlas/collection_case_view_take.html @@ -42,7 +42,7 @@ {% endif %} {% if show_history and case.history %}

- History: {{case.history}} + History: {{case.history|linebreaks}}
{% endif %} @@ -102,7 +102,7 @@ Discussion:
- {{case.discussion}} + {{case.discussion|linebreaks}}

@@ -114,7 +114,7 @@ Report:
- {{case.report}} + {{case.report|linebreaks}}