{% extends "base.html" %} {% from "components/components/button/macro.njk" import usaButton %} {% macro service_list( heading, show_heading, organizations=[], services=[] ) %} {% if show_heading and (services or organizations) %}

{{ heading }}

{% else %} {% endif %}
{% endmacro %} {% block per_page_title %} Choose service {% endblock %} {% block maincolumn_content %}

Choose service

{% if can_add_service %}
{% if current_user.has_access_to_live_and_trial_mode_services %}
 
{% endif %} {{ usaButton({ "element": "a", "text": "Add a new service", "href": url_for('.add_service'), "classes": "" }) }} {% if current_user.has_access_to_live_and_trial_mode_services %}
{% endif %}
{% endif %} {% endblock %}