2019-05-21 14:56:15 +01:00
|
|
|
{% extends "org_template.html" %}
|
|
|
|
|
{% from "components/live-search.html" import live_search %}
|
|
|
|
|
|
|
|
|
|
{% block org_page_title %}
|
|
|
|
|
Services
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
|
|
|
<h1 class="heading-medium">
|
|
|
|
|
Trial mode services
|
|
|
|
|
</h1>
|
|
|
|
|
{{ live_search(target_selector='.browse-list-item', show=True, form=search_form, label='Search by name') }}
|
|
|
|
|
<ul>
|
2019-06-20 10:35:55 +01:00
|
|
|
{% for service in current_org.trial_services %}
|
2019-05-21 14:56:15 +01:00
|
|
|
<li class="browse-list-item">
|
2019-12-06 07:53:46 +00:00
|
|
|
<a href="{{ url_for('main.service_dashboard', service_id=service.id) }}" class="govuk-link govuk-link--no-visited-state browse-list-link">{{ service['name'] }}</a>
|
2019-05-21 14:56:15 +01:00
|
|
|
</li>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|