5 lines
94 B
Python
5 lines
94 B
Python
from django.shortcuts import render
|
|
|
|
def my_form(request):
|
|
return render(request, 'main')
|