nuitdelinfo_2021/nuitdelinfo_2021/views.py

7 lines
125 B
Python
Raw Normal View History

2021-12-02 19:30:42 +01:00
from django.shortcuts import render
def index(request):
context = {}
2021-12-03 02:37:28 +01:00
return render(request, "index.html", context)