comments/urls.py

10 lines
208 B
Python
Raw Normal View History

2020-04-28 23:01:19 +00:00
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'),
]