mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-03 21:58:25 -04:00
Organisation team members only have access to the dashboard if they’re also a member of that service. They always have access to the usage page, so let’s link there instead.
21 lines
423 B
HTML
21 lines
423 B
HTML
{% extends "org_template.html" %}
|
|
|
|
{% block org_page_title %}
|
|
Usage
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<h1 class="heading-medium">
|
|
Usage
|
|
</h1>
|
|
<ul>
|
|
{% for service in current_org.live_services %}
|
|
<li class="browse-list-item">
|
|
<a href="{{ url_for('main.usage', service_id=service.id) }}" class="browse-list-link">{{ service['name'] }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endblock %}
|