fix: avoid escaping
This commit is contained in:
@@ -34,7 +34,7 @@
|
||||
Anmerkungen intern
|
||||
</dt>
|
||||
<dd class="mt-1 text-sm leading-6 text-gray-700 sm:col-span-2 sm:mt-0">
|
||||
{{ assignment.remarks|nl2br|default('-')|raw }}
|
||||
{{ assignment.remarks|default('-')|nl2br }}
|
||||
</dd>
|
||||
</div>
|
||||
</dl>
|
||||
|
||||
@@ -86,7 +86,7 @@
|
||||
Wünsche:
|
||||
</div>
|
||||
<div>
|
||||
{{ teamer.remarks|nl2br|default('-') }}
|
||||
{{ teamer.remarks|default('-')|nl2br }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -56,7 +56,7 @@
|
||||
{{ application.pickup|bpn_pickup_label|default('-') }}
|
||||
</td>
|
||||
<td>
|
||||
{{ application.requests|nl2br|default('-') }}
|
||||
{{ application.requests|default('-')|nl2br }}
|
||||
</td>
|
||||
<td>
|
||||
<div class="flex items-center justify-end space-x-2">
|
||||
@@ -153,7 +153,7 @@
|
||||
{{ disposition.pickup|bpn_pickup_label }}
|
||||
</td>
|
||||
<td>
|
||||
{{ disposition.remarks|nl2br|default('-') }}
|
||||
{{ disposition.remarks|default('-')|nl2br }}
|
||||
</td>
|
||||
<td>
|
||||
<button type="button"
|
||||
|
||||
Reference in New Issue
Block a user