Merge pull request #699 from alphagov/rearrange-breaking-change

Reorder the breaking change page
This commit is contained in:
Chris Hill-Scott
2016-06-17 16:10:18 +01:00
committed by GitHub

View File

@@ -25,6 +25,18 @@
{% endif %}
</div>
<form method="post">
<input type="hidden" name="name" value="{{ new_template.name }}" />
<input type="hidden" name="subject" value="{{ new_template.subject or '' }}" />
<input type="hidden" name="template_content" value="{{ new_template.content }}" />
<input type="hidden" name="confirm" value="true" />
{{ page_footer(
'Save changes to template',
back_link=url_for(".edit_service_template", service_id=current_service.id, template_id=new_template.id),
back_link_text="Back"
) }}
</form>
<p>
When you send messages using this template youll need
{{ new_template.placeholders|length + 1 }} columns of data:
@@ -50,16 +62,4 @@
<p>Developers, youll need to update your API calls</p>
<form method="post">
<input type="hidden" name="name" value="{{ new_template.name }}" />
<input type="hidden" name="subject" value="{{ new_template.subject or '' }}" />
<input type="hidden" name="template_content" value="{{ new_template.content }}" />
<input type="hidden" name="confirm" value="true" />
{{ page_footer(
'Save changes to template',
back_link=url_for(".edit_service_template", service_id=current_service.id, template_id=new_template.id),
back_link_text="Back"
) }}
</form>
{% endblock %}