eos87
eos87

Reputation: 9353

Two forms in django templates without conflict

I'm creating a template with two different forms but I have the following problem: when I submit the first one the second is also validated and get validation errors. What can I do to avoid this conflict?

Thanks and sorry for my english.

Upvotes: 1

Views: 1061

Answers (1)

tosh
tosh

Reputation: 315

use the prefix argument on your forms

Upvotes: 5

Related Questions