From:
{% if clarification.sender is not empty %}
{{ clarification.sender.effectiveName }} (t{{ clarification.sender.teamid }})
{% else %}
Jury
{% endif %}
To:
{% if clarification.recipient is not empty %}
{{ clarification.recipient.effectiveName }} (t{{ clarification.recipient.teamid }})
{% elseif clarification.sender is not null %}
Jury
{% else %}
All
{% endif %}
{{ clarification.body | markdown_to_html | sanitize_html('app.clarification_sanitizer') }}