move trial mode services from org dashboard to separate page

the new page is platform admin only, and also has search built in
also, split test_organisation_invites into two files
This commit is contained in:
Leo Hemsted
2019-05-21 14:56:15 +01:00
parent a65450b118
commit 9795f2b838
6 changed files with 740 additions and 639 deletions

View File

@@ -0,0 +1,22 @@
{% 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>
{% for service in services %}
<li class="browse-list-item">
<a href="{{ url_for('main.service_dashboard', service_id=service.id) }}" class="browse-list-link">{{ service['name'] }}</a>
</li>
{% endfor %}
</ul>
{% endblock %}