This commit is contained in:
王思川 2024-06-01 11:23:42 +08:00
parent 937e999856
commit 10ca9a26c6
1 changed files with 2 additions and 2 deletions

View File

@ -17,11 +17,11 @@ Including another URLconf
from django.contrib import admin from django.contrib import admin
from django.urls import path, include from django.urls import path, include
from application.pjt_mgnt.views import project_ledger from application.pjt_mgnt.views import proj_ledger_list_view
urlpatterns = [ urlpatterns = [
path("admin/", admin.site.urls), path("admin/", admin.site.urls),
path("", project_ledger, name="index"), path("", proj_ledger_list_view, name="index"),
path("common/", include("common.urls")), path("common/", include("common.urls")),
path("accounts/", include("application.accounts.urls")), path("accounts/", include("application.accounts.urls")),
path("basic_data/perf_mgnt/", include("application.perf_mgnt.urls")), path("basic_data/perf_mgnt/", include("application.perf_mgnt.urls")),