From 2a4b6f79fbc9b8aeee7b93303a5073aefd831ddd Mon Sep 17 00:00:00 2001 From: Aryamanz29 Date: Fri, 11 Aug 2023 17:46:45 +0530 Subject: [PATCH] [fix] Resolved `TemplateDoesNotExist` error on device page Included `nested_admin` app in the settings INSTALLED_APPS. --- tests/openwisp2/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/openwisp2/settings.py b/tests/openwisp2/settings.py index 06159003..ac203be5 100644 --- a/tests/openwisp2/settings.py +++ b/tests/openwisp2/settings.py @@ -200,6 +200,7 @@ ) openwisp_ipam_index = INSTALLED_APPS.index('openwisp_ipam') INSTALLED_APPS.insert(openwisp_ipam_index, 'leaflet') + INSTALLED_APPS.insert(openwisp_ipam_index, 'nested_admin') INSTALLED_APPS.insert(openwisp_ipam_index, 'openwisp_monitoring.check') INSTALLED_APPS.insert(openwisp_ipam_index, 'openwisp_monitoring.device') INSTALLED_APPS.insert(openwisp_ipam_index, 'openwisp_monitoring.monitoring')