11 lines
333 B
Python
11 lines
333 B
Python
from django.urls import path
|
|
|
|
from .views import case_detail, case_list, home, web_intelligence
|
|
|
|
urlpatterns = [
|
|
path("", home, name="home"),
|
|
path("cases/", case_list, name="case_list"),
|
|
path("web-intelligence/", web_intelligence, name="web_intelligence"),
|
|
path("cases/<int:pk>/", case_detail, name="case_detail"),
|
|
]
|