7 lines
129 B
Python
7 lines
129 B
Python
"""Views for the home app."""
|
|
|
|
from django.shortcuts import render
|
|
|
|
def index(request):
|
|
return render(request, 'index.html')
|