{% extends "views/platform-admin/_base_template.html" %} {% from "components/page-footer.html" import page_footer %} {% from "components/form.html" import form_wrapper %} {% from "components/components/button/macro.njk" import usaButton %} {% block per_page_title %} Find services by name {% endblock %} {% block platform_admin_content %}

Find services by name

{% call form_wrapper( action=url_for('.find_services_by_name'), class='usa-search margin-bottom-4' ) %} {{ form.search(param_extensions={ "label": {"text": "Find services by name, partial name, or service ID"} }) }} {{ usaButton({ "text": "Search", "classes": "usa-button search-form__button" }) }} {% endcall %} {% call form_wrapper(id='search-form' ) %} {% endcall %} {% if services_found %} {% elif services_found == [] %}

No services found.

{% endif %} {% endblock %}