SOITA/config/views.py

10 lines
226 B
Python
Raw Normal View History

2021-12-08 19:28:56 +01:00
from django.shortcuts import render, redirect
from django.template import loader
def index(request):
# context = {
# 'latest_question_list': latest_question_list,
# }
2021-12-09 23:25:35 +01:00
return render(request, 'index.html')