mirror of
https://github.com/DerTyp7/tealcode-django-python.git
synced 2025-10-30 20:57:07 +01:00
5 lines
95 B
Python
5 lines
95 B
Python
from django.shortcuts import render
|
|
|
|
def index(req):
|
|
return render(req, "main/index.html")
|