2016-01-20 10:36:41 +00:00
|
|
|
{% macro sms_message(
|
2016-02-18 14:54:59 +00:00
|
|
|
body, recipient=None, name=None, id=None, edit_link=None, from=None
|
2016-01-20 10:36:41 +00:00
|
|
|
) %}
|
2016-01-13 16:21:29 +00:00
|
|
|
{% if name %}
|
|
|
|
|
<h3 class="sms-message-name">
|
|
|
|
|
{% if edit_link %}
|
2016-03-17 10:59:47 +00:00
|
|
|
<a name="{{ name|linkable_name }}" href="{{ edit_link }}">{{ name }}</a>
|
2016-01-13 16:27:54 +00:00
|
|
|
{% else %}
|
|
|
|
|
{{ name }}
|
2016-01-13 16:21:29 +00:00
|
|
|
{% endif %}
|
|
|
|
|
</h3>
|
|
|
|
|
{% endif %}
|
2016-01-20 10:36:41 +00:00
|
|
|
<div class="sms-message-wrapper{% if input_name %}-with-radio{% endif %}">
|
2016-02-18 14:54:59 +00:00
|
|
|
{% if from %}
|
|
|
|
|
<span class="sms-message-from">
|
|
|
|
|
{{ from }}
|
|
|
|
|
</span>
|
|
|
|
|
{% endif %}
|
2016-02-08 16:36:53 +00:00
|
|
|
{{ body }}
|
2015-12-10 16:52:45 +00:00
|
|
|
</div>
|
2015-12-18 17:03:49 +00:00
|
|
|
{% if recipient %}
|
|
|
|
|
<p class="sms-message-recipient">
|
|
|
|
|
{{ recipient }}
|
|
|
|
|
</p>
|
|
|
|
|
{% endif %}
|
2016-01-22 14:38:10 +00:00
|
|
|
{% if id %}
|
|
|
|
|
<p class="sms-message-recipient">
|
|
|
|
|
Template ID: {{ id }}
|
|
|
|
|
</p>
|
|
|
|
|
{% endif %}
|
2015-12-10 16:52:45 +00:00
|
|
|
{% endmacro %}
|