Files
notifications-admin/app/templates/views/choose-service.html
2016-01-18 11:15:14 +00:00

23 lines
418 B
HTML

{% extends "withnav_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 %}