Files
notifications-api/notifications_utils/jinja_templates/sms_preview_template.jinja2
T

14 lines
253 B
Django/Jinja
Raw Normal View History

2024-05-16 10:17:45 -04:00
{% if show_sender %}
<p class="sms-message-sender">
From: {{ sender }}
</p>
{% endif %}
{% if show_recipient %}
<p class="sms-message-recipient">
To: {{ recipient }}
</p>
{% endif %}
<div class="sms-message-wrapper">
{{ body }}
</div>