Thursday, December 30, 2010

ModelForm and checkbox from choices

In my model i have that part:
... 
STATUSES_CHOICES = (
        (0, _(u'one')),
        (1, _(u'two')),
        (2, _(u'three'))
    )
...
status = models.SmallIntegerField(default=0, choices=STATUSES_CHOICES, null=True, blank=True)
....



then in my form based on that model I wanto to make that field as checkbox list. I know that I can make it as:
class Meta:
        widgets = {'categories' : forms.CheckboxSelectMultiple, }

but, I want to change that field's label. How can I do that to server that list with changed label?

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

No comments:

Post a Comment