mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-06-02 12:30:48 -04:00
In pages specific to a service (e.g. dashboard and sub pages) the title needs to distinguish which service it applies to. This is mainly to give context to screen reader users who could be managing multiple services. Implementing this uses template inheritance: `page_title` includes `per_page_title` includes `service_page_title` ‘GOV.UK Notify’ is inserted into every page title. Pages that set `service_page_title` get the service name inserted too.
69 lines
1.6 KiB
HTML
69 lines
1.6 KiB
HTML
{% extends "withoutnav_template.html" %}
|
|
{% from "components/table.html" import list_table, field, text_field, link_field, right_aligned_field_heading, hidden_field_heading %}
|
|
|
|
{% block per_page_title %}
|
|
Providers
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<div class="grid-row">
|
|
<div class="column-two-thirds">
|
|
<h1 class="heading-large">Providers</h1>
|
|
|
|
<h2 class="heading-medium">SMS</h2>
|
|
|
|
{% call(item, row_number) list_table(
|
|
sms_providers,
|
|
caption="SMS providers",
|
|
caption_visible=False,
|
|
empty_message='No email providers',
|
|
field_headings=['Provider', 'Priority', 'Active', 'Last Updated', ''],
|
|
field_headings_visible=True
|
|
) %}
|
|
|
|
{{ text_field(item.display_name) }}
|
|
|
|
{{ text_field(item.priority) }}
|
|
|
|
{{ text_field(item.active) }}
|
|
|
|
{% if item.updated_at %}
|
|
{{ text_field(item.updated_at|format_datetime_short) }}
|
|
{% else %}
|
|
{{ text_field('None') }}
|
|
{% endif %}
|
|
|
|
{{ link_field('change', url_for('main.view_provider', provider_id=item.id)) }}
|
|
|
|
|
|
{% endcall %}
|
|
|
|
<h2 class="heading-medium">Email</h2>
|
|
|
|
|
|
{% 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 %}
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|