| 
					
				 | 
			
			
				@@ -1,8 +1,14 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-from django.urls import path 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+from django.urls import path, re_path, register_converter 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 from . import views 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+from . import converters 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+register_converter(converters.FourDigitYearConverter, "year4") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 urlpatterns = [ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     path('', views.index), # http://127.0.0.1:8000 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    path('cats/', views.categories), # http://127.0.0.1:8000/cats/ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    path('cats/<int:cat_id>/', views.categories), # http://127.0.0.1:8000/cats/1/ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    path('cats/<slug:cat_slug>/', views.categories_by_slug), # http://127.0.0.1:8000/cats/asdfad/ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    # re_path(r"^archive/(?P<year>[0-9]{4})", views.archive), 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    path('archive/<year4:year>', views.archive), 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 ] 
			 |