Files
notifications-admin/app/templates/views/send-sms.html

49 lines
1.3 KiB
HTML
Raw Normal View History

2015-12-14 16:53:07 +00:00
{% extends "withnav_template.html" %}
{% from "components/sms-message.html" import sms_message %}
{% from "components/page-footer.html" import page_footer %}
2016-01-12 10:43:23 +00:00
{% from "components/textbox.html" import textbox %}
2015-11-30 14:17:54 +00:00
{% block page_title %}
GOV.UK Notify | Send text messages
2015-11-30 14:17:54 +00:00
{% endblock %}
2015-12-14 16:53:07 +00:00
{% block maincolumn_content %}
<form method="POST" enctype="multipart/form-data">
<h1 class="heading-xlarge">Send text messages</h1>
<h2 class="heading-medium">1. Choose text message template</h2>
{% for template in message_templates %}
<div class="template-picker-option">
<div class="template-picker-option-radio">
<label class="block-label" for="template-{{loop.index}}">
{{ template.name }}
<input type="radio" name="template" id="template-{{loop.index}}" value="{{ template.name }}" />
</label>
</div>
{{ sms_message(template.body) }}
</div>
{% endfor %}
<p>
or <a href="{{ url_for(".add_template", service_id=service_id) }}">create a new template</a>
</p>
<h2 class="heading-medium">2. Add recipients</h2>
<p>
Upload a CSV file to add your recipients details.
</p>
<p>
You can also <a href="#">download an example CSV</a>.
</p>
<p>
2016-01-12 10:43:23 +00:00
{{textbox(form.file)}}
</p>
{{ page_footer("Continue") }}
2015-12-14 16:53:07 +00:00
</form>
2015-11-30 14:17:54 +00:00
{% endblock %}