mirror of
				https://github.com/DerTyp7/tealcode-django-python.git
				synced 2025-11-03 22:38:57 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			151 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			151 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django.shortcuts import render
 | 
						|
 | 
						|
def index(req):
 | 
						|
    return render(req, "main/index.html")
 | 
						|
 | 
						|
def list(req):
 | 
						|
    return render(req, "main/list.html") |