2019-11-25 12:18:15 +01:00
|
|
|
from django.urls import path
|
|
|
|
|
|
|
|
from . import views
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
path('', views.index, name='index'),
|
2020-01-20 14:59:40 +01:00
|
|
|
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")
|
2019-11-25 12:18:15 +01:00
|
|
|
]
|