mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-06-03 21:10:24 -04: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 %}
|