blob: a3b1b9f520c3ca96c4d33997dbaf304f64cfa879 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
from django.urls import path
from ctrack.organisations.views import organisations_detail_view
app_name = "organisations"
urlpatterns = [
path("<str:name>/", view=organisations_detail_view, name="detail")
]
|