Remove global navigation element
This commit is contained in:
parent
092c7506b4
commit
e84d37fcac
@ -21,8 +21,6 @@
|
|||||||
{% include 'navigation/topbar.html' %}
|
{% include 'navigation/topbar.html' %}
|
||||||
|
|
||||||
<div class='global-layout'>
|
<div class='global-layout'>
|
||||||
{% include 'navigation/global_navigation.html' %}
|
|
||||||
|
|
||||||
<div class='global-panel-container'>
|
<div class='global-panel-container'>
|
||||||
{% block sidenav %}{% endblock %}
|
{% block sidenav %}{% endblock %}
|
||||||
|
|
||||||
|
@ -1,19 +0,0 @@
|
|||||||
{% from "components/sidenav_item.html" import SidenavItem %}
|
|
||||||
|
|
||||||
<div class="global-navigation sidenav {% if portfolio %}global-navigation__context--portfolio{% endif %}">
|
|
||||||
<ul>
|
|
||||||
{{ SidenavItem("New Task Order",
|
|
||||||
href=url_for("task_orders.get_started"),
|
|
||||||
icon="plus",
|
|
||||||
active=g.matchesPath('/task_orders/new'),
|
|
||||||
) }}
|
|
||||||
|
|
||||||
{% if g.current_user.has_portfolios %}
|
|
||||||
{{ SidenavItem("Portfolios", href="/portfolios", icon="cloud", active=g.matchesPath('/portfolios')) }}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if g.Authorization.has_atat_permission(g.current_user, g.Permissions.VIEW_AUDIT_LOG) %}
|
|
||||||
{{ SidenavItem("Activity History", url_for('atst.activity_history'), icon="time", active=g.matchesPath('/activity-history')) }}
|
|
||||||
{% endif %}
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
Loading…
x
Reference in New Issue
Block a user