From e9ec8b3db78d7e14d8ebee21743ff815b1e72054 Mon Sep 17 00:00:00 2001
From: Thorge Petersen <petersen@rz.uni-kiel.de>
Date: Thu, 14 Dec 2023 11:56:19 +0100
Subject: [PATCH] Display edit organizations button below title

---
 ckanext/odsh/templates/organization/read_base.html | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/ckanext/odsh/templates/organization/read_base.html b/ckanext/odsh/templates/organization/read_base.html
index 6277b79f..32a5555b 100644
--- a/ckanext/odsh/templates/organization/read_base.html
+++ b/ckanext/odsh/templates/organization/read_base.html
@@ -13,13 +13,13 @@
 
 {% block page_header %}
 <div class="odsh-dataset-heading">
-    <div class="pull-right">
-        {% if h.check_access('organization_update', {'id': group_dict.id}) %}
-        {% link_for _('Manage'), named_route=group_type+'.edit', id=group_dict.name, class_='btn btn-primary btn-add-dataset',
-        icon='wrench' %}
-        {% endif %}
-    </div>
-    <h2> {{ group_dict.title or group_dict.name }} </h2>
+  <div>
+    <h2>{{ group_dict.title or group_dict.name }}</h2>
+    {% if h.check_access('organization_update', {'id': group_dict.id}) %}
+      {% link_for _('Manage'), named_route=group_type+'.edit', id=group_dict.name, class_='btn btn-primary btn-add-dataset',
+      icon='wrench' %}
+    {% endif %}
+  </div>
 </div>
 {% if group_dict.description %}
 <div class="organizaion-full-description with-bottom-line">
-- 
GitLab