From 6de2b1be1b3d99b554200789b4a86235492fb8c8 Mon Sep 17 00:00:00 2001
From: Todd Dembrey <todd.dembrey@torchbox.com>
Date: Thu, 18 Jan 2018 11:52:37 +0000
Subject: [PATCH] Move categories to the end so that it doesnt take up room in
 the middle

---
 opentech/public/projects/models.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/opentech/public/projects/models.py b/opentech/public/projects/models.py
index ece39755b..d1d2462ee 100644
--- a/opentech/public/projects/models.py
+++ b/opentech/public/projects/models.py
@@ -121,10 +121,11 @@ class ProjectPage(FundingMixin, BasePage):
         FieldPanel('introduction'),
         FieldPanel('status'),
         StreamFieldPanel('body'),
-        FieldPanel('categories', widget=CategoriesWidget),
         InlinePanel('contact_details', label="Contact Details"),
         InlinePanel('related_pages', label="Related Projects"),
-    ] + FundingMixin.content_panels
+    ] + FundingMixin.content_panels + [
+        FieldPanel('categories', widget=CategoriesWidget),
+    ]
 
     def category_options(self):
         categories = json.loads(self.categories)
-- 
GitLab