How do I flag only one of the formsets in django admin ?
Posted
by azuer88
on Stack Overflow
See other posts from Stack Overflow
or by azuer88
Published on 2010-03-29T08:59:44Z
Indexed on
2010/03/29
9:03 UTC
Read the original article
Hit count: 357
django-admin
|django-formsets
I have these (simplified) models:
class Question(models.Model):
question = models.CharField(max_length=60)
class Choices(models.Model):
question = models.ForeignKey(Question)
text = models.CharField(max_length=60)
is_correct = models.BooleanField(default=False)
I've made Choices as an inline of Question (in admin). Is there a way to make sure that only one Choice will have is_correct = True?
Ideally, is_correct will be displayed as a radio button when it is displayed in the admin formset (TabularInline).
My first solution was to override the validation of the formset but did understand how to do this. (is_correct is displayed as checkbox, and I'd display an error that only one is_correct should be selected.)
© Stack Overflow or respective owner