From 4bc0e3be938199417a7309f077e335d616432d76 Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 18 Nov 2024 12:59:54 +0000 Subject: [PATCH] . --- atlas/templates/atlas/case_display_block.html | 6 +++--- atlas/templates/atlas/collection_case_view_take.html | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) 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}}