Files

14 lines
253 B
Django/Jinja
Raw Permalink 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>