Files
tealcode-django-python/TealCode/main/views.py
2021-11-09 20:25:26 +01:00

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")