mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-30 02:50:03 -04:00
9 lines
328 B
HTML
9 lines
328 B
HTML
<nav class="navigation">
|
|
<ul>
|
|
<li><a href="{{ url_for('.organisation_dashboard', org_id=current_org.id) }}">Dashboard</a></li>
|
|
{% if current_user.has_permissions(admin_override=True) %}
|
|
<li><a href="{{ url_for('.organisation_users', org_id=current_org.id) }}">Team members</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
</nav>
|