mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-10 18:22:37 -04:00
Includes: - turning off :visited styles to match existing design - swapping heading classes used to make links bold for the GOVUK Frontend bold override class - adding visually hidden text to some links to make them work when isolated from their context We may need to revisit whether some links, such as those for documentation and features, may benefit from having some indication that their target has been visited.
56 lines
1.5 KiB
HTML
56 lines
1.5 KiB
HTML
{% extends "views/platform-admin/_base_template.html" %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/form.html" import form_wrapper %}
|
|
{% from "components/button/macro.njk" import govukButton %}
|
|
|
|
{% block per_page_title %}
|
|
Find services by name
|
|
{% endblock %}
|
|
|
|
{% block platform_admin_content %}
|
|
|
|
<h1 class="heading-large">
|
|
Find services by name
|
|
</h1>
|
|
|
|
|
|
{% call form_wrapper(
|
|
action=url_for('.find_services_by_name'),
|
|
class='grid-row'
|
|
) %}
|
|
<div class="column-three-quarters">
|
|
{{ textbox(
|
|
form.search,
|
|
width='1-1',
|
|
label='Find services by name, or by partial name'
|
|
) }}
|
|
</div>
|
|
<div class="column-one-quarter">
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
|
|
{{ govukButton({
|
|
"text": "Search",
|
|
"classes": "search-form__button"
|
|
}) }}
|
|
</div>
|
|
{% endcall %}
|
|
|
|
{% call form_wrapper(id='search-form' ) %}
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
|
|
{% endcall %}
|
|
|
|
{% if services_found %}
|
|
<nav class="browse-list">
|
|
<ul>
|
|
{% for service in services_found %}
|
|
<li class="browse-list-item">
|
|
<a href="{{url_for('.service_dashboard', service_id=service.id)}}" class="govuk-link govuk-link--no-visited-state browse-list-link">{{ service.name }}</a>
|
|
</li>
|
|
<hr>
|
|
{% endfor %}
|
|
</ul>
|
|
</nav>
|
|
{% elif services_found == [] %}
|
|
<p class="browse-list-hint">No services found.</p>
|
|
{% endif %}
|
|
{% endblock %}
|