mirror of
https://github.com/Rushilwiz/relish.git
synced 2025-04-09 14:30:19 -04:00
6 lines
164 B
Python
6 lines
164 B
Python
from django.shortcuts import render
|
|
|
|
# Create your views here.
|
|
def index(request):
|
|
if request.method == 'GET':
|
|
return render(request, 'form/index.html') |