7 lines
162 B
Python
7 lines
162 B
Python
from django.http import HttpResponse
|
|
from django.shortcuts import render
|
|
from .models import User
|
|
|
|
def index(request):
|
|
return render(request, "index.html", {})
|