diff --git a/app/views/layouts/organisations.html.erb b/app/views/layouts/organisations.html.erb
index 0feff9918..cb4d1c716 100644
--- a/app/views/layouts/organisations.html.erb
+++ b/app/views/layouts/organisations.html.erb
@@ -1,6 +1,9 @@
<% content_for :content do %>
- <%= organisation_header(request.path, current_user, @organisation) %>
+ <% if current_user.support? && request.path != "/organisations" %>
+ <%= @organisation.name %>
+ <% end %>
+ <%= content_for(:title) %>
<% items = tab_items(current_user) %>
diff --git a/app/views/organisations/show.html.erb b/app/views/organisations/show.html.erb
index ecd36da73..f4760a7c9 100644
--- a/app/views/organisations/show.html.erb
+++ b/app/views/organisations/show.html.erb
@@ -1,4 +1,4 @@
-<% content_for :title, "Your organisation (Details)" %>
+<% content_for :title, current_user.support? ? "Details" : "Your organisation" %>
<% content_for :tab_title do %>
<%= "Details" %>