From 13f854c91f931c50192ce84dc3631d12cf0d5ad0 Mon Sep 17 00:00:00 2001 From: Pieter Lambrecht Date: Wed, 6 Jul 2022 14:10:10 +0200 Subject: [PATCH] Re-order journal list and form --- netbox/templates/extras/object_journal.html | 34 ++++++++++++--------- 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/netbox/templates/extras/object_journal.html b/netbox/templates/extras/object_journal.html index 363b067a8..0ed95d9eb 100644 --- a/netbox/templates/extras/object_journal.html +++ b/netbox/templates/extras/object_journal.html @@ -5,25 +5,29 @@ {% render_errors form %} {% block content %} - {% if perms.extras.add_journalentry %} -
-
-
-

New Journal Entry

- {% csrf_token %} - {% render_form form %} -
-
- Cancel - -
-
-
- {% endif %}
{% render_table table 'inc/table.html' %} {% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
+ {% if perms.extras.add_journalentry %} +
+
+

New Journal Entry

+
+
+
+ {% csrf_token %} + {% render_form form %} +
+
+ Cancel + +
+
+
+
+
+ {% endif %} {% endblock %}