mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
32 lines
641 B
HTML
32 lines
641 B
HTML
{% extends "withoutnav_template.html" %}
|
||
{% from "components/browse-list.html" import browse_list %}
|
||
|
||
{% block page_title %}
|
||
Choose service – GOV.UK Notify
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<h1 class="heading-large">
|
||
Choose service
|
||
</h1>
|
||
{% if current_user.has_permissions(admin_override=True) %}
|
||
{{ browse_list([
|
||
{
|
||
'title': 'List all services',
|
||
'link': url_for('.show_all_services')
|
||
}
|
||
]) }}
|
||
{% endif %}
|
||
|
||
{{ browse_list(services) }}
|
||
{{ browse_list([
|
||
{
|
||
'title': 'Add a new service…',
|
||
'link': url_for('.add_service')
|
||
},
|
||
]) }}
|
||
|
||
|
||
{% endblock %}
|