mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-11 14:23:09 +00:00
13 lines
No EOL
277 B
Python
13 lines
No EOL
277 B
Python
from django.shortcuts import render
|
|
|
|
from .forms import MyForm
|
|
|
|
def my_view(request):
|
|
if request.method == 'POST':
|
|
form = MyForm(data=request.POST)
|
|
else:
|
|
form = MyForm()
|
|
|
|
context = {'form': form}
|
|
|
|
return render(request, 'bar/form.html', context) |