Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
you can send it to the same view,
but this is a crutch, you don’t need to do this (forms must be in views)
@register.simple_tag(takes_context=True)
def my_form(ctx, ...):
request = ctx['request']
form = MyForm(request.POST or None, request.FILES or None)
if form.is_valid():
...
return render_to_string(tpl, {'form': form})
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question