I can I add fields to a model formset? It seems you can add fields if you user normal formset but not with model formsets (at least it's not the same way). I don't think I should use inline formset either ..?

I want to let users edit their photoalbum (django-photologue). So far I've manage to do this:

PhotoFormSet = modelformset_factory(Photo,
                                       exclude=(
                                        'effect',
                                        'caption',
                                        'title_slug',
                                        'crop_from',
                                        'is_public',
                                        'slug',
                                        'tags'
                                       ))

context['gallery_form'] = PhotoFormSet(queryset=self.object.gallery.photos.all())

The problem is that I have to add a checkbox for each photo saying "Delete this photo" and a radio select saying "Set this to album cover".

Thanks in advance!

link|improve this question

58% accept rate
feedback

1 Answer

up vote 6 down vote accepted

You can add fields. Just define a form in the normal way, then tell modelformset_factory to use that as the basis for the formset:

MyPhotoForm(forms.ModelForm):
    delete_box = forms.BooleanField()

    class Meta:
        model = Photo
        exclude=('effect',
                 'caption',
                 'title_slug',
                 'crop_from',
                 'is_public',
                 'slug',
                 'tags'
                ))

PhotoFormSet = modelformset_factory(Photo, form=MyPhotoForm)
link|improve this answer
Thank you that did the trick. One last thing, how do I solve the Radio box issue, the radio box is mutal to all photos? – mrmclovin Jan 18 '11 at 19:18
That's beyond the scope of this question. Ask a separate one and I'll answer there. – Daniel Roseman Jan 18 '11 at 20:05
Okey I asked the question here: stackoverflow.com/questions/4730161/… – mrmclovin Jan 19 '11 at 8:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.