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