additional sidebar navigation and removed some elements from main content window

This commit is contained in:
David Kennedy 2024-06-20 09:58:12 -04:00
parent bd2ad797cf
commit 94aa2a0e19
No known key found for this signature in database
GPG key ID: 6528A5386E66B96B
2 changed files with 20 additions and 0 deletions

View file

@ -13,19 +13,24 @@
{% block messages %} {% block messages %}
{% include "includes/form_messages.html" %} {% include "includes/form_messages.html" %}
{% endblock %} {% endblock %}
{# Note: Reimplement commented out functionality #}
<!--
<h1>Manage your domains</h1> <h1>Manage your domains</h1>
-->
{% comment %} {% comment %}
IMPORTANT: IMPORTANT:
If this button is added on any other page, make sure to update the If this button is added on any other page, make sure to update the
relevant view to reset request.session["new_request"] = True relevant view to reset request.session["new_request"] = True
{% endcomment %} {% endcomment %}
<!--
<p class="margin-top-4"> <p class="margin-top-4">
<a href="{% url 'domain-request:' %}" class="usa-button" <a href="{% url 'domain-request:' %}" class="usa-button"
> >
Start a new domain request Start a new domain request
</a> </a>
</p> </p>
-->
{% if content == 'domains' %} {% if content == 'domains' %}
{% include "includes/domains_table.html" with portfolio=portfolio %} {% include "includes/domains_table.html" with portfolio=portfolio %}
{% elif content == 'domain-requests' %} {% elif content == 'domain-requests' %}

View file

@ -16,6 +16,21 @@
Domain requests Domain requests
</a> </a>
</li> </li>
<li class="usa-sidenav__item">
<a href="#">
Members
</a>
</li>
<li class="usa-sidenav__item">
<a href="#">
Organization
</a>
</li>
<li class="usa-sidenav__item">
<a href="#">
Senior official
</a>
</li>
</ul> </ul>
</nav> </nav>
</div> </div>