123456789101112131415161718 |
- from django.urls import path, re_path, register_converter
- from . import views
- from . import converters
- register_converter(converters.FourDigitYearConverter, "year4")
- urlpatterns = [
- path('', views.index, name='home'), # http://127.0.0.1:8000
- path('about/', views.about, name='about'),
- path('addpage/', views.addpage, name='add_page'),
- path('contact/', views.contact, name='contact'),
- path('loign/', views.login, name='login'),
- path('post/<int:post_id>/', views.show_post, name='post'),
- # path('cats/<int:cat_id>/', views.categories, name='cat_id'), # http://127.0.0.1:8000/cats/1/
- # path('cats/<slug:cat_slug>/', views.categories_by_slug, name='cats'), # http://127.0.0.1:8000/cats/asdfad/
- # path('archive/<year4:year>', views.archive, name='archive'),
- ]
|