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

32 lines
623 B
HTML
Raw Normal View History

{% 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',
'link': url_for('.service_dashboard', service_id=123)
},
{
'title': 'Vehicle Tax',
'link': url_for('.service_dashboard', service_id=123)
},
]) }}
{{ browse_list([
{
'title': 'Add a new service…',
'link': url_for('.add_service')
},
]) }}
{% endblock %}