Files
notifications-admin/app/templates/org_nav.html
Leo Hemsted 7ddad7c99e dont use has_permissions to check for platform admins
platform_admin is a separate concept to permissions, so by removing the
checks for it from the current_user.has_permissions function, we can
simplify things greatly. We already record on the user whether they're
a platform admin anyway.
2018-03-06 13:08:06 +00:00

7 lines
245 B
HTML

<nav class="navigation">
<ul>
<li><a href="{{ url_for('.organisation_dashboard', org_id=current_org.id) }}">Dashboard</a></li>
<li><a href="{{ url_for('.manage_org_users', org_id=current_org.id) }}">Team members</a></li>
</ul>
</nav>