mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-20 18:31:52 +00:00
13 lines
277 B
Python
13 lines
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)
|