mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
13 lines
276 B
HTML
13 lines
276 B
HTML
{% macro sms_message(body, recipient) %}
|
|
{% if recipient %}
|
|
<p class="sms-message-recipient">
|
|
{{ recipient }}
|
|
</p>
|
|
{% endif %}
|
|
<div class="sms-message">
|
|
<div class="sms-message-wrapper">
|
|
{{ body|placeholders }}
|
|
</div>
|
|
</div>
|
|
{% endmacro %}
|