feat: admin panel enrichment
This commit is contained in:
@@ -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"),
|
||||
]
|
||||
Reference in New Issue
Block a user