mirror of
https://github.com/DerTyp7/tealcode-django-python.git
synced 2025-10-30 12:57:07 +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") |