To be presented with a page listing any existing Infoblox Configurations, and ability to create a new Configuration.
Observed Behavior
Traceback with: 'NoneType' object has no attribute '__name__'Exception Location: | /usr/local/lib/python3.11/site-packages/nautobot/core/templatetags/helpers.py, line 798, in saved_view_modal
Steps to Reproduce
From the home page, choose Apps -> Installed Apps
Click the orange cog (configure) for Single Source of Truth
Click "Infoblox Configuration List"
Cause/Fix
This is caused by Saved Views being implemented in Nautobot 2.3+. At /nautobot/core/templates/generic/object_list.html , line 263 it determines that the SSOTInfobloxConfig model is a saved view (new default setting). This model has no need for ever being a saved view.
The fix will be to set is_saved_view_model = False for the class SSOTInfobloxConfig, PR incoming.
Environment
Expected Behavior
To be presented with a page listing any existing Infoblox Configurations, and ability to create a new Configuration.
Observed Behavior
Traceback with:
'NoneType' object has no attribute '__name__'
Exception Location: | /usr/local/lib/python3.11/site-packages/nautobot/core/templatetags/helpers.py, line 798, in saved_view_modal
Steps to Reproduce
Cause/Fix
This is caused by Saved Views being implemented in Nautobot 2.3+. At /nautobot/core/templates/generic/object_list.html , line 263 it determines that the SSOTInfobloxConfig model is a saved view (new default setting). This model has no need for ever being a saved view.
The fix will be to set
is_saved_view_model = False
for theclass SSOTInfobloxConfig
, PR incoming.