2018-02-13 14:49:03 +00:00
|
|
|
{% extends "org_template.html" %}
|
|
|
|
|
|
|
|
|
|
{% block per_page_title %}
|
2018-02-13 16:40:04 +00:00
|
|
|
{{ current_org.name }}
|
2018-02-13 14:49:03 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
2018-02-14 16:13:11 +00:00
|
|
|
{% block org_page_title %}
|
2018-02-13 16:40:04 +00:00
|
|
|
{{ current_org.name }}
|
2018-02-13 14:49:03 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
|
|
|
<h1 class="heading-large">
|
2018-02-13 16:40:04 +00:00
|
|
|
{{ current_org.name }}
|
2018-02-13 14:49:03 +00:00
|
|
|
</h1>
|
|
|
|
|
<ul>
|
|
|
|
|
{% for service in organisation_services %}
|
|
|
|
|
<li class="browse-list-item">
|
2018-03-20 16:11:57 +00:00
|
|
|
{% if service.has_permission_to_view %}
|
|
|
|
|
<a href="{{ url_for('main.service_dashboard', service_id=service['id']) }}" class="browse-list-link">{{ service['name'] }}</a>
|
|
|
|
|
{% else %}
|
|
|
|
|
{{ service['name'] }}
|
|
|
|
|
{% endif %}
|
2018-02-13 14:49:03 +00:00
|
|
|
</li>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|