{% extends "withoutnav_template.html" %} {% from "components/table.html" import list_table, field, text_field, link_field, right_aligned_field_heading, hidden_field_heading %} {% block page_title %} Providers – GOV.UK Notify {% endblock %} {% block maincolumn_content %}

Providers

Providers on Notify

SMS

{% call(item, row_number) list_table( sms_providers, caption="SMS providers", caption_visible=False, empty_message='No email providers', field_headings=['Provider', 'Priority', 'Active', ''], field_headings_visible=True ) %} {{ text_field(item.display_name) }} {{ text_field(item.priority) }} {{ text_field(item.active) }} {{ link_field('change', url_for('main.view_provider', provider_id=item.id)) }} {% endcall %}

Email

{% call(item, row_number) list_table( email_providers, caption="Email providers", caption_visible=False, empty_message='No email providers', field_headings=['Provider', 'Priority', 'Active', ''], field_headings_visible=True ) %} {{ text_field(item.display_name) }} {{ text_field(item.priority) }} {{ text_field(item.active) }} {{ link_field('change', url_for('main.view_provider', provider_id=item.id)) }} {% endcall %}
{% endblock %}