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

26 lines
468 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 %}
2017-02-13 10:45:15 +00:00
{% block per_page_title %}
Choose service
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) }}
{% 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 %}
2016-01-13 14:43:21 +00:00
2016-01-13 14:43:21 +00:00
{% endblock %}