mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-04 08:08:26 -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.
15 lines
432 B
HTML
15 lines
432 B
HTML
{% from "components/previous-next-navigation.html" import previous_next_navigation %}
|
|
{% extends "withnav_template.html" %}
|
|
|
|
{% block service_page_title %}
|
|
Uploaded files
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
<h1 class="heading-large">Uploaded files</h1>
|
|
<div class="dashboard">
|
|
{% include 'views/dashboard/_jobs.html' %}
|
|
{{ previous_next_navigation(prev_page, next_page) }}
|
|
</div>
|
|
{% endblock %}
|