Files
notifications-admin/app/templates/views/provider.html
Martyn Inglis 6699442f6b Added provider management pages in.
- see priority
- change priority
2016-05-11 09:43:55 +01:00

33 lines
929 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "withoutnav_template.html" %}
{% from "components/table.html" import list_table, field, text_field, link_field, right_aligned_field_heading, hidden_field_heading %}
{% from "components/textbox.html" import textbox %}
{% from "components/page-footer.html" import page_footer %}
{% block page_title %}
Provider - {{provider.display_name}} GOV.UK Notify
{% endblock %}
{% block maincolumn_content %}
<div class="grid-row">
<div class="column-three-quarters">
<h1 class="heading-large">{{provider.display_name}}</h1>
<p>Update provider:</p>
<ul class="list-bullet">
<li>We only send from the highest priority provider</li>
</ul>
<form method="post">
{{ textbox(form.priority) }}
{{ page_footer('Save', back_link=url_for('.view_providers'), back_link_text="Back to providers") }}
</form>
</div>
</div>
{% endblock %}