8 lines
124 B
Python
8 lines
124 B
Python
from django.shortcuts import render
|
|
|
|
# Create your views here.
|
|
|
|
def home(request):
|
|
return render(request, 'home.html')
|
|
|