mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
23 lines
416 B
HTML
23 lines
416 B
HTML
{% extends "admin_template.html" %}
|
|
{% from "components/browse-list.html" import browse_list %}
|
|
|
|
{% block page_title %}
|
|
GOV.UK Notify | Dashboard
|
|
{% endblock %}
|
|
|
|
{% block fullwidth_content %}
|
|
|
|
<h1 class="heading-xlarge">
|
|
Choose service
|
|
</h1>
|
|
|
|
{{ browse_list(services) }}
|
|
{{ browse_list([
|
|
{
|
|
'title': 'Add a new service…',
|
|
'link': url_for('.add_service')
|
|
},
|
|
]) }}
|
|
|
|
{% endblock %}
|