{% extends "withoutnav_template.html" %} {% from "components/browse-list.html" import browse_list %} {% block per_page_title %} Choose service {% endblock %} {% block maincolumn_content %}

Choose service

{% for org in organisations %}
 
{{ browse_list([org]) }}
{{ browse_list(org.services) }}
{% endfor %} {% if services_without_organisations %}
 
{{ browse_list(services_without_organisations) }}
{% endif %} {% if can_add_service %}
 
{{ browse_list([ { 'title': 'Add a new service…', 'link': url_for('.add_service') }, ]) }} {% endif %} {% endblock %}