diff --git a/app/templates/withnav_template.html b/app/templates/withnav_template.html
index 523a17a08..41dc9b3fb 100644
--- a/app/templates/withnav_template.html
+++ b/app/templates/withnav_template.html
@@ -4,8 +4,8 @@
{% block service_page_title %}{% endblock %} – {{ current_service.name }}
{% endblock %}
-{% block fullwidth_content %}
-
+{% block main %}
+
{% if current_service.organisation_id %}
{% if current_user.platform_admin or
@@ -27,13 +27,18 @@
{% include "main_nav.html" %}
{% if help %}
-
+
{% else %}
-
+
{% endif %}
- {% include 'flash_messages.html' %}
- {% block maincolumn_content %}{% endblock %}
-
+ {% block beforeContent %}{% endblock %}
+
+ {% block content %}
+ {% include 'flash_messages.html' %}
+ {% block maincolumn_content %}{% endblock %}
+ {% endblock %}
+
+
{% endblock %}
diff --git a/app/templates/withoutnav_template.html b/app/templates/withoutnav_template.html
index cd4f318c5..74362fd87 100644
--- a/app/templates/withoutnav_template.html
+++ b/app/templates/withoutnav_template.html
@@ -1,15 +1,14 @@
{% extends "admin_template.html" %}
-{% block fullwidth_content %}
-
+{% block beforeContent %}
{% if current_service and current_service.active and current_user.is_authenticated and current_user.belongs_to_service(current_service.id) %}
{% endif %}
-
- {% include 'flash_messages.html' %}
- {% block maincolumn_content %}{% endblock %}
-
-
+{% endblock %}
+
+{% block content %}
+ {% include 'flash_messages.html' %}
+ {% block maincolumn_content %}{% endblock %}
{% endblock %}