mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 13:11:08 -05:00
9 lines
178 B
Python
9 lines
178 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'designers'
|
|
|
|
urlpatterns = [
|
|
path('<slug:slug>/', views.DesignerDetailView.as_view(), name='designer_detail'),
|
|
]
|