8 lines
264 B
Python
8 lines
264 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('smalltalk/', views.SmalltalkList.as_view() ),
|
|
path('smalltalk/create/', views.SmalltalkCreateView.as_view() ),
|
|
path('smalltalk/<int:pk>/', views.SmalltalkDetailView.as_view() ),
|
|
] |