mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-06-29 11:53:41 -04:00
removed "View providers" and "List all services" from the choose service page and the left-hand nav bar
26 lines
492 B
HTML
26 lines
492 B
HTML
{% extends "withoutnav_template.html" %}
|
||
{% from "components/browse-list.html" import browse_list %}
|
||
|
||
{% block page_title %}
|
||
Platform admin – GOV.UK Notify
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<h1 class="heading-large">
|
||
Platform admin
|
||
</h1>
|
||
|
||
{{ browse_list([
|
||
{
|
||
'title': 'List all services',
|
||
'link': url_for('.show_all_services')
|
||
},
|
||
{
|
||
'title': 'View providers',
|
||
'link': url_for('.view_providers')
|
||
},
|
||
]) }}
|
||
|
||
{% endblock %}
|