comments/urls.py
2020-04-28 19:01:19 -04:00

9 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'),
]