Files
fet2020/fet2020/posts/urls.py

9 lines
261 B
Python

from django.urls import path
from . import views
urlpatterns=[
path('func/slug_calc', views.slug_calc),
path('t/<str:tag>',views.tags,name='posts.tags'),
path('',views.index,name='posts.index'),
path('<str:id>',views.show, name='posts.show'),
]