From 209e7212190c3d9effdb009135468389f35e1052 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Mon, 6 Aug 2018 12:45:46 -0400 Subject: [PATCH 1/8] Post-release version bump --- netbox/netbox/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/netbox/settings.py b/netbox/netbox/settings.py index 6f1c240aa..69269e2a8 100644 --- a/netbox/netbox/settings.py +++ b/netbox/netbox/settings.py @@ -22,7 +22,7 @@ if sys.version_info[0] < 3: DeprecationWarning ) -VERSION = '2.4.0' +VERSION = '2.4.1-dev' BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) From 12dfd4b6e0a201024849911094b25f56e7242f05 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Mon, 6 Aug 2018 13:32:52 -0400 Subject: [PATCH 2/8] Fixes #2308: Custom fields panel absent from object view in UI --- netbox/templates/inc/custom_fields_panel.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/templates/inc/custom_fields_panel.html b/netbox/templates/inc/custom_fields_panel.html index 3b82b8ee6..e469048af 100644 --- a/netbox/templates/inc/custom_fields_panel.html +++ b/netbox/templates/inc/custom_fields_panel.html @@ -1,4 +1,4 @@ -{% with custom_fields=obj.custom_fields %} +{% with custom_fields=obj.get_custom_fields %} {% if custom_fields %}
From bba88b2be4747c54ac5e48d4919fedcae4e1977b Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Mon, 6 Aug 2018 14:14:40 -0400 Subject: [PATCH 3/8] Fixes #2303: Always redirect to parent object when bulk editing/deleting components --- netbox/templates/dcim/device.html | 2 +- netbox/templates/dcim/inc/devicetype_component_table.html | 4 ++-- netbox/templates/virtualization/virtualmachine.html | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/netbox/templates/dcim/device.html b/netbox/templates/dcim/device.html index a915d0c7f..62b54f361 100644 --- a/netbox/templates/dcim/device.html +++ b/netbox/templates/dcim/device.html @@ -553,7 +553,7 @@ {% endif %} {% if interfaces and perms.dcim.delete_interface %} - {% endif %} diff --git a/netbox/templates/dcim/inc/devicetype_component_table.html b/netbox/templates/dcim/inc/devicetype_component_table.html index b43a3612f..e549880f9 100644 --- a/netbox/templates/dcim/inc/devicetype_component_table.html +++ b/netbox/templates/dcim/inc/devicetype_component_table.html @@ -9,12 +9,12 @@