feat: admin panel enrichment

This commit is contained in:
mohamad
2026-07-19 14:31:28 +03:30
parent d8d7819eca
commit 1042fba121
77 changed files with 4616 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
from django.urls import path
from . import views
app_name = "projects"
urlpatterns = [
path("", views.DashboardView.as_view(), name="dashboard"),
path("new/", views.ProjectBriefCreateView.as_view(), name="create"),
path("<int:pk>/", views.ProjectBriefDetailView.as_view(), name="detail"),
path("<int:pk>/edit/", views.ProjectBriefUpdateView.as_view(), name="edit"),
]