2016-01-13 14:43:21 +00:00
|
|
|
{% 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([
|
|
|
|
|
{
|
|
|
|
|
'title': 'MOT Reminders',
|
2016-01-15 17:46:09 +00:00
|
|
|
'link': url_for('.service_dashboard', service_id=123)
|
2016-01-13 14:43:21 +00:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
'title': 'Vehicle Tax',
|
2016-01-15 17:46:09 +00:00
|
|
|
'link': url_for('.service_dashboard', service_id=123)
|
2016-01-13 14:43:21 +00:00
|
|
|
},
|
|
|
|
|
]) }}
|
|
|
|
|
{{ browse_list([
|
|
|
|
|
{
|
|
|
|
|
'title': 'Add a new service…',
|
|
|
|
|
'link': url_for('.add_service')
|
|
|
|
|
},
|
|
|
|
|
]) }}
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|