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('details/', views.post_detail), # path('posts/', views.posts_list), path('cats//', views.categories, name='cat_id'), # http://127.0.0.1:8000/cats/1/ path('cats//', views.categories_by_slug, name='cats'), # http://127.0.0.1:8000/cats/asdfad/ # re_path(r"^archive/(?P[0-9]{4})", views.archive), path('archive/', views.archive, name='archive'), ]