Files
notifications-admin/app/templates/views/platform-admin.html

26 lines
492 B
HTML
Raw Normal View History

2016-05-24 15:52:44 +01:00
{% 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')
},
]) }}
2016-05-24 15:52:44 +01:00
{% endblock %}