Files
notifications-admin/app/templates/views/choose-service.html
T

23 lines
428 B
HTML
Raw Normal View History

{% extends "withoutnav_template.html" %}
2016-01-13 14:43:21 +00:00
{% from "components/browse-list.html" import browse_list %}
{% block page_title %}
2016-02-08 09:23:51 +00:00
Choose service GOV.UK Notify
2016-01-13 14:43:21 +00:00
{% endblock %}
{% block maincolumn_content %}
2016-01-13 14:43:21 +00:00
<h1 class="heading-large">
2016-01-13 14:43:21 +00:00
Choose service
</h1>
2016-01-18 11:15:14 +00:00
{{ browse_list(services) }}
2016-01-13 14:43:21 +00:00
{{ browse_list([
{
'title': 'Add a new service…',
'link': url_for('.add_service')
},
]) }}
{% endblock %}