Files
notifications-admin/app/templates/views/choose-service.html
Nicholas Staples a9fead0d82 Merge with master.
2016-01-19 09:49:01 +00:00

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 %}