mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-03 18:38:24 -04:00
29 lines
648 B
HTML
29 lines
648 B
HTML
{% extends "org_template.html" %}
|
|
|
|
{% block per_page_title %}
|
|
{{ current_org.name }}
|
|
{% endblock %}
|
|
|
|
{% block org_page_title %}
|
|
{{ current_org.name }}
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<h1 class="heading-large">
|
|
{{ current_org.name }}
|
|
</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 %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endblock %}
|