Skip to content

Commit

Permalink
removed pre-wrap form call
Browse files Browse the repository at this point in the history
  • Loading branch information
neerajdarwin committed Oct 23, 2024
1 parent 958e3ee commit 0abc5dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% for question_answer_text in part.questions_answers_text %}
<strong>{{ question_answer_text.question.question_text }}</strong><br>
{# @formatter:off#}
<div class="border p-1 bg-white rounded pre-wrap">{% if question_answer_text.answer %}{{ question_answer_text.answer|safe }}{% else %}This question has not been answered{% endif %}</div>
<div class="border p-1 bg-white rounded">{% if question_answer_text.answer %}{{ question_answer_text.answer|safe }}{% else %}This question has not been answered{% endif %}</div>
{# @formatter:on#}
<br>
{% endfor %}
Expand Down

0 comments on commit 0abc5dd

Please sign in to comment.