robotroll
robotroll

Reputation: 92

Django Polls App - New poll should have at least two choices

I recently finished the Django Polls App tutorial. Now i'm wondering how to force the admin to create at least two choices before he can save a new poll. I would like to make at least two choices required before a save can happen.

Regards, Robo

Upvotes: 0

Views: 88

Answers (1)

Christian Ternus
Christian Ternus

Reputation: 8492

Harder than it seems! You want to create a custom formset with its own validation, as in this answer.

Upvotes: 1

Related Questions