cleaning up navigation

This commit is contained in:
Beverly Nguyen
2024-04-15 16:08:31 -07:00
parent dfe5b2e020
commit a171ba73c4
4 changed files with 77 additions and 9 deletions

View File

@@ -1,11 +1,34 @@
<nav class="navigation">
<!-- <nav class="navigation">
<ul>
<li><a class="usa-link{{ org_navigation.is_selected('dashboard') }}" href="{{ url_for('.organization_dashboard', org_id=current_org.id) }}">Usage</a></li>
<li><a class="usa-link{{ org_navigation.is_selected('team-members') }}" href="{{ url_for('.manage_org_users', org_id=current_org.id) }}">Team members</a></li>
{% if current_user.platform_admin %}
{% if current_user.platform_admin %}
<li><a class="usa-link{{ org_navigation.is_selected('settings') }}" href="{{ url_for('.organization_settings', org_id=current_org.id) }}">Settings</a></li>
<li><a class="usa-link{{ org_navigation.is_selected('trial-services') }}" href="{{ url_for('.organization_trial_mode_services', org_id=current_org.id) }}">Trial mode services</a></li>
<li><a class="usa-link{{ org_navigation.is_selected('billing') }}" href="{{ url_for('.organization_billing', org_id=current_org.id) }}">Billing</a></li>
{% endif %}
{% endif %}
</ul>
</nav>
</nav> -->
{% if org_navigation_links %}
<nav aria-label="Side navigation,">
<ul class="usa-sidenav" itemtype="http://schema.org/ItemList">
{% for item in org_navigation_links %}
{% if not item['requires_permission'] or current_user.platform_admin %}
<li class="usa-sidenav__item" href="{{ url_for(item['link'], org_id=current_org.id) }}"
itemprop="itemListElement"
itemscope
itemtype="http://schema.org/ListItem"
>
<a class="{% if request.endpoint == item['link'] %}usa-current{% endif %}" href="{{ url_for(item['link'], org_id=current_org.id) }}" itemprop="item">
<span itemprop="name">{{item['name']}}</span>
</a>
</li>
{% endif %}
{% endfor %}
</ul>
</nav>
{% endif %}

View File

@@ -15,16 +15,22 @@
The file service_navigation.html is included only in withnav_template. It's not used in settings_template. That is one out of the two differences between settings template and withnav template. As a result, when other templates extend settings_template, they include the serviceNavigation block but keep it empty. The settings_template.html is specifically used for these pages in the app: manage-users.html, service-settings.html, and user-profile.html.
In addition, for templates that previously extended org_template.html, there's an addition of the orgNavBreadcrumb block.
In addition, for templates that previously extended org_template.html, there's an addition of the orgNavBreadcrumb block. serviceNavigation should be empty on templates that previously extended org_template
{% block orgNavBreadcrumb %}
{% include "/new/components/org_nav_breadcrumb.html" %}
{% endblock %}
#}
{% block orgNavBreadcrumb %}{% endblock %}
{% if current_org.name %}
{% block orgNavBreadcrumb %}{% include "/new/components/org_nav_breadcrumb.html" %}{% endblock %}
{% endif %}
<div class="grid-row margin-top-5">
<div class="grid-col-3">
{% block sideNavigation %}
{% include "/new/components/main_nav.html" %}
{% if org_navigation_links %}
{% include "/new/components/org_nav.html" %}
{% else %}
{% include "/new/components/main_nav.html" %}
{% endif %}
{#
Include settings_nav.html for child templates that previously extended settings_template.