11 lines
334 B
Python
11 lines
334 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.index, name='index'),
|
|
path('post', views.Post_Handler, name="post"),
|
|
path('category', views.Category_Handler, name="category"),
|
|
path('comment', views.Comments_Handler, name="comment"),
|
|
path('menu', views.Menu_Handler, name="menu")
|
|
] |