mirror of
				https://github.com/MarcZierle/photo-log-backend.git
				synced 2025-11-04 09:44:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			197 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			197 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django.urls import path
 | 
						|
from django.views.generic import TemplateView
 | 
						|
 | 
						|
 | 
						|
urlpatterns = [
 | 
						|
    path('', TemplateView.as_view(template_name="scrapers_home.html"), name='scrapers_home'),        
 | 
						|
]
 |