feat: add levee work records

This commit is contained in:
akira
2026-04-04 11:32:26 +09:00
parent c773c7d3b8
commit b7b9818855
20 changed files with 929 additions and 6 deletions

View File

@@ -46,6 +46,7 @@ INSTALLED_APPS = [
'apps.fertilizer',
'apps.materials',
'apps.workrecords',
'apps.levee_work',
]
MIDDLEWARE = [

View File

@@ -60,4 +60,5 @@ urlpatterns = [
path('api/fertilizer/', include('apps.fertilizer.urls')),
path('api/materials/', include('apps.materials.urls')),
path('api/workrecords/', include('apps.workrecords.urls')),
path('api/levee-work/', include('apps.levee_work.urls')),
]