mirror of
				https://github.com/DerTyp7/tealcode-django-python.git
				synced 2025-11-03 22:38:57 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			163 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			163 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django.urls import path
 | 
						|
from . import views
 | 
						|
 | 
						|
urlpatterns = [
 | 
						|
    path('', views.index, name="main-index"),
 | 
						|
    path('list/', views.list, name="main-list"),
 | 
						|
]
 |