diff --git a/netbox_secretstore/template_content.py b/netbox_secretstore/template_content.py index f002332..0f9e892 100644 --- a/netbox_secretstore/template_content.py +++ b/netbox_secretstore/template_content.py @@ -12,11 +12,11 @@ def right_page(self): class DeviceSecrets(Secrets): - model = 'dcim.Device' + model = 'dcim.device' class VMSecrets(Secrets): - model = 'virtualization.VirtualMachine' + model = 'virtualization.virtualMachine' template_extensions = [DeviceSecrets, VMSecrets]