Spaces not tabs

This commit is contained in:
Chris Hill-Scott
2016-01-13 17:17:24 +00:00
parent 75c92c12c1
commit 13bb1ec5ee

View File

@@ -4,45 +4,45 @@
{% from "components/textbox.html" import textbox %} {% from "components/textbox.html" import textbox %}
{% block page_title %} {% block page_title %}
GOV.UK Notify | Send text messages GOV.UK Notify | Send text messages
{% endblock %} {% endblock %}
{% block maincolumn_content %} {% block maincolumn_content %}
<form method="POST" enctype="multipart/form-data"> <form method="POST" enctype="multipart/form-data">
<h1 class="heading-xlarge">Send text messages</h1> <h1 class="heading-xlarge">Send text messages</h1>
<h2 class="heading-medium">1. Choose text message template</h2> <h2 class="heading-medium">1. Choose text message template</h2>
{% for template in message_templates %} {% for template in message_templates %}
<div class="template-picker-option"> <div class="template-picker-option">
<div class="template-picker-option-radio"> <div class="template-picker-option-radio">
<label class="block-label" for="template-{{loop.index}}"> <label class="block-label" for="template-{{loop.index}}">
{{ template.name }} {{ template.name }}
<input type="radio" name="template" id="template-{{loop.index}}" value="{{ template.name }}" /> <input type="radio" name="template" id="template-{{loop.index}}" value="{{ template.name }}" />
</label> </label>
</div> </div>
{{ sms_message(template.body) }} {{ sms_message(template.body) }}
</div> </div>
{% endfor %} {% endfor %}
<p> <p>
or <a href="{{ url_for(".add_template", service_id=service_id) }}">create a new template</a> or <a href="{{ url_for(".add_template", service_id=service_id) }}">create a new template</a>
</p> </p>
<h2 class="heading-medium">2. Add recipients</h2> <h2 class="heading-medium">2. Add recipients</h2>
<p> <p>
Upload a CSV file to add your recipients details. Upload a CSV file to add your recipients details.
</p> </p>
<p> <p>
You can also <a href="#">download an example CSV</a>. You can also <a href="#">download an example CSV</a>.
</p> </p>
<p> <p>
{{textbox(form.file)}} {{textbox(form.file)}}
</p> </p>
{{ page_footer("Continue") }} {{ page_footer("Continue") }}
</form> </form>
{% endblock %} {% endblock %}