Backend Draft

This commit is contained in:
__init__
2026-02-23 20:31:53 +05:30
commit eec700af51
127 changed files with 2356 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
from django.urls import path
from .views import ActivityLogListView, ReportView
urlpatterns = [
path('activity/', ActivityLogListView.as_view(), name='activity-list'),
path('reports/', ReportView.as_view(), name='reports'),
]