9 lines
168 B
Python
9 lines
168 B
Python
from django.shortcuts import render
|
|
from django.db.models import Manager
|
|
|
|
# Create your views here.
|
|
|
|
|
|
def view_index(request):
|
|
return render(request, 'index.html')
|