mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
27 lines
624 B
HTML
27 lines
624 B
HTML
{% macro sms_message(
|
|
body, recipient=None, name=None, id=None, edit_link=None
|
|
) %}
|
|
{% if name %}
|
|
<h3 class="sms-message-name">
|
|
{% if edit_link %}
|
|
<a href="{{ edit_link }}">{{ name }}</a>
|
|
{% else %}
|
|
{{ name }}
|
|
{% endif %}
|
|
</h3>
|
|
{% endif %}
|
|
<div class="sms-message-wrapper{% if input_name %}-with-radio{% endif %}">
|
|
{{ body|placeholders }}
|
|
</div>
|
|
{% if recipient %}
|
|
<p class="sms-message-recipient">
|
|
{{ recipient }}
|
|
</p>
|
|
{% endif %}
|
|
{% if id %}
|
|
<p class="sms-message-recipient">
|
|
Template ID: {{ id }}
|
|
</p>
|
|
{% endif %}
|
|
{% endmacro %}
|