diff --git a/app/templates/new/components/service_navigation.html b/app/templates/new/components/service_navigation.html
new file mode 100644
index 000000000..4cd23f252
--- /dev/null
+++ b/app/templates/new/components/service_navigation.html
@@ -0,0 +1,19 @@
+{% macro navigation_service_name(service) %}
+
+ {{ service.name }}
+ {% if not service.active %}
+ Suspended
+ {% endif %}
+
+{% endmacro %}
+
+
+ {% if current_service.organization_id %}
+ {% if current_user.platform_admin or
+ (current_user.belongs_to_organization(current_service.organization_id) and current_service.live) %}
+
{{ current_service.organization_name }}
+ {% endif %}
+ {% endif %}
+ {{ navigation_service_name(current_service) }}
+
Switch service
+
diff --git a/app/templates/new/layouts/withnav_template.html b/app/templates/new/layouts/withnav_template.html
index 412a004d0..7846513a9 100644
--- a/app/templates/new/layouts/withnav_template.html
+++ b/app/templates/new/layouts/withnav_template.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "/new/base.html" %}
{% block per_page_title %}
{% block service_page_title %}{% endblock %} – {{ current_service.name }}
@@ -7,7 +7,7 @@
{% block main %}
{% block serviceNavigation %}
- {% include "service_navigation.html" %}
+ {% include "new/components/service_navigation.html" %}
{% endblock %}