feat: dpm加入url

This commit is contained in:
caoqianming 2024-06-06 14:51:22 +08:00
parent a14c411795
commit 0fdaa0a7d5
2 changed files with 3 additions and 1 deletions

View File

@ -77,7 +77,8 @@ INSTALLED_APPS = [
'apps.pum', 'apps.pum',
'apps.pm', 'apps.pm',
'apps.enp', 'apps.enp',
'apps.edu' 'apps.edu',
'apps.dpm'
] ]
MIDDLEWARE = [ MIDDLEWARE = [

View File

@ -67,6 +67,7 @@ urlpatterns = [
path('', include('apps.pm.urls')), path('', include('apps.pm.urls')),
path('', include('apps.enp.urls')), path('', include('apps.enp.urls')),
path('', include('apps.edu.urls')), path('', include('apps.edu.urls')),
path('', include('apps.dpm.urls')),
# 前端页面入口 # 前端页面入口
path('', TemplateView.as_view(template_name="index.html")), path('', TemplateView.as_view(template_name="index.html")),