10 lines
208 B
Python
10 lines
208 B
Python
|
from django.urls import path
|
||
|
from . import views
|
||
|
|
||
|
app_name = "comments"
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('<str:thread_id>/', views.thread, name='thread'),
|
||
|
path('<str:thread_id>/post/', views.post, name='post'),
|
||
|
]
|