Files
notifications-admin/app/templates/views/organisations/organisation/index.html

29 lines
648 B
HTML
Raw Normal View History

2018-02-13 14:49:03 +00:00
{% extends "org_template.html" %}
{% block per_page_title %}
{{ current_org.name }}
2018-02-13 14:49:03 +00:00
{% endblock %}
2018-02-14 16:13:11 +00:00
{% block org_page_title %}
{{ current_org.name }}
2018-02-13 14:49:03 +00:00
{% endblock %}
{% block maincolumn_content %}
<h1 class="heading-large">
{{ current_org.name }}
2018-02-13 14:49:03 +00:00
</h1>
<ul>
{% for service in organisation_services %}
<li class="browse-list-item">
{% 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 %}