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

37 lines
951 B
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 %}
{% from "components/file-upload.html" import file_upload %}
2015-11-30 14:17:54 +00:00
{% block page_title %}
Send text messages GOV.UK Notify
2015-11-30 14:17:54 +00:00
{% endblock %}
2015-12-14 16:53:07 +00:00
{% block maincolumn_content %}
<h1 class="heading-large">Send text messages</h1>
2016-01-13 17:17:24 +00:00
<form method="POST" enctype="multipart/form-data">
<div class="grid-row">
<div class="column-two-thirds">
{{ sms_message(template.content) }}
</div>
</div>
{{file_upload(form.file, button_text='Choose a CSV file')}}
{{ banner(
'You can only send messages to yourself until you <a href="{}">request to go live</a>'.format(
url_for('.service_request_to_go_live', service_id=service_id)
)|safe,
type='important'
) }}
{{ page_footer(
"Continue to preview"
) }}
2016-01-13 17:17:24 +00:00
</form>
2015-11-30 14:17:54 +00:00
{% endblock %}