39649-vm/core/urls.py
2026-04-15 16:15:01 +00:00

11 lines
323 B
Python

from django.urls import path
from .views import brief_create, brief_detail, brief_list, home
urlpatterns = [
path("", home, name="home"),
path("briefs/", brief_list, name="brief_list"),
path("briefs/new/", brief_create, name="brief_create"),
path("briefs/<int:pk>/", brief_detail, name="brief_detail"),
]