mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-04 06:28:24 -04:00
Because a member of the organisation can now see some pages for any live service they should be able to click into each one.
21 lines
441 B
HTML
21 lines
441 B
HTML
{% extends "org_template.html" %}
|
|
|
|
{% block org_page_title %}
|
|
Services
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<h1 class="heading-medium">
|
|
Services
|
|
</h1>
|
|
<ul>
|
|
{% for service in current_org.live_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 %}
|