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

26 lines
468 B
HTML
Raw Normal View History

{% extends "withoutnav_template.html" %}
{% from "components/browse-list.html" import browse_list %}
{% block per_page_title %}
Choose service
{% endblock %}
{% block maincolumn_content %}
<h1 class="heading-large">
Choose service
</h1>
{{ browse_list(services) }}
{% if can_add_service %}
2016-10-28 10:47:32 +01:00
{{ browse_list([
{
'title': 'Add a new service…',
'link': url_for('.add_service')
},
]) }}
{% endif %}
{% endblock %}