diff --git a/app/templates/new/components/service_navigation.html b/app/templates/new/components/service_nav.html
similarity index 100%
rename from app/templates/new/components/service_navigation.html
rename to app/templates/new/components/service_nav.html
diff --git a/app/templates/settings_nav.html b/app/templates/new/components/settings_nav.html
similarity index 100%
rename from app/templates/settings_nav.html
rename to app/templates/new/components/settings_nav.html
diff --git a/app/templates/new/layouts/withnav_template.html b/app/templates/new/layouts/withnav_template.html
deleted file mode 100644
index 30d38b4bc..000000000
--- a/app/templates/new/layouts/withnav_template.html
+++ /dev/null
@@ -1,57 +0,0 @@
-{% extends "/new/base.html" %}
-
-{% block per_page_title %}
- {% block service_page_title %}{% endblock %}{% if current_service.name %} – {{ current_service.name }}{% endif %}
- {% block org_page_title %}{% endblock %}{% if current_org.name %} – {{ current_org.name }}{% endif %}
-{% endblock %}
-
-{% block main %}
-
- {% block serviceNavigation %}
- {% if current_org.name %}
- {% else %}
- {% include "new/components/service_navigation.html" %}
- {% endif %}
- {% endblock %}
- {#
- The withnav_template can serve as a replacement for both settings_template and org_template.html.
-
- 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, serviceNavigation should be empty on templates that previously extended org_template. For templates that previously extended org_template.html, there's an addition of the orgNavBreadcrumb block.
- {% block orgNavBreadcrumb %}
- {% include "/new/components/org_nav_breadcrumb.html" %}
- {% endblock %}
- #}
- {% if current_org.name %}
- {% block orgNavBreadcrumb %}{% include "/new/components/org_nav_breadcrumb.html" %}{% endblock %}
- {% endif %}
-
-
- {% block sideNavigation %}
- {% 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.
-
- Include "org_nav.html" for child templates that previously extended org_template html
- #}
- {% endblock %}
-
-
- {% block beforeContent %}
- {% block backLink %}{% endblock %}
- {% endblock %}
-
- {% block content %}
- {% include 'flash_messages.html' %}
- {% block maincolumn_content %}{% endblock %}
- {% endblock %}
-
-
-
-
-{% endblock %}
diff --git a/app/templates/new/templates_glossary.md b/app/templates/new/templates_glossary.md
index 1c52e75dc..126d2ce40 100644
--- a/app/templates/new/templates_glossary.md
+++ b/app/templates/new/templates_glossary.md
@@ -33,10 +33,10 @@ This document serves as a glossary for the templates directory structure of the
### Old Layout Templates We Don't Need
- withoutnav_template.html Delete
- main_template.html Delete
-- settings_templates.html `withnav_template` can be used to replace `settings_template`.
+- settings_templates.html It will be replaced with `withnav_template` .
- settings_nav.html (move to /components/ directory)
- main_nav.html (move to /components/ directory)
- service_navigation.html (move to /components/ directory)
-- org_template, could be under it's own directory called /layout/organization
+- org_template, It will be replaced with `withnav_template`
- org_nav.html (move to /components/ directory)
- content_template.html Delete
diff --git a/app/templates/main_nav.html b/app/templates/old/main_nav.html
similarity index 100%
rename from app/templates/main_nav.html
rename to app/templates/old/main_nav.html
diff --git a/app/templates/org_nav.html b/app/templates/old/org_nav.html
similarity index 100%
rename from app/templates/org_nav.html
rename to app/templates/old/org_nav.html
diff --git a/app/templates/org_template.html b/app/templates/old/org_template.html
similarity index 96%
rename from app/templates/org_template.html
rename to app/templates/old/org_template.html
index dd3fbee20..5e04003fd 100644
--- a/app/templates/org_template.html
+++ b/app/templates/old/org_template.html
@@ -1,4 +1,4 @@
-{% extends "admin_template.html" %}
+{% extends "base.html" %}
{% block per_page_title %}
{% block org_page_title %}{% endblock %} – {{ current_org.name }}
diff --git a/app/templates/service_navigation.html b/app/templates/old/service_navigation.html
similarity index 100%
rename from app/templates/service_navigation.html
rename to app/templates/old/service_navigation.html
diff --git a/app/templates/new/components/settings_navigation.html b/app/templates/old/settings_nav.html
similarity index 100%
rename from app/templates/new/components/settings_navigation.html
rename to app/templates/old/settings_nav.html
diff --git a/app/templates/settings_template.html b/app/templates/old/settings_template.html
similarity index 100%
rename from app/templates/settings_template.html
rename to app/templates/old/settings_template.html
diff --git a/app/templates/old/withnav_template.html b/app/templates/old/withnav_template.html
new file mode 100644
index 000000000..3b6ebfbf2
--- /dev/null
+++ b/app/templates/old/withnav_template.html
@@ -0,0 +1,35 @@
+{% extends "base.html" %}
+
+{% block per_page_title %}
+ {% block service_page_title %}{% endblock %} – {{ current_service.name }}
+{% endblock %}
+
+{% block main %}
+
+ {% include "service_navigation.html" %}
+
+ {% if help %}
+
+ {% else %}
+
+ {% endif %}
+ {% include "main_nav.html" %}
+
+ {% if help %}
+
+ {% else %}
+
+ {% endif %}
+ {% block beforeContent %}
+ {% block backLink %}{% endblock %}
+ {% endblock %}
+
+ {% block content %}
+ {% include 'flash_messages.html' %}
+ {% block maincolumn_content %}{% endblock %}
+ {% endblock %}
+
+
+
+
+{% endblock %}
diff --git a/app/templates/views/manage-users.html b/app/templates/views/manage-users.html
index de71d0184..edf78c4e0 100644
--- a/app/templates/views/manage-users.html
+++ b/app/templates/views/manage-users.html
@@ -1,4 +1,4 @@
-{% extends "settings_template.html" %}
+{% extends "withnav_template.html" %}
{% from "components/tick-cross.html" import tick_cross %}
{% from "components/live-search.html" import live_search %}
{% from "components/components/button/macro.njk" import usaButton %}
@@ -7,6 +7,12 @@
Team members
{% endblock %}
+{% block serviceNavigation %}{% endblock %}
+
+{% block sideNavigation %}
+ {% include "/new/components/settings_nav.html" %}
+{% endblock %}
+
{% block maincolumn_content %}