Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm a little lost here, but here is the situation. I know theres a lot of code but bear with me. I have two models: Album and Image. Image has a ForeignKey to Album. In the form that the User sees I want them to be able to create an album and add images all in one go. So far, I've achieved this with the use of inlineformset_factory and I'm able to add content fine. My problem lies in that when the images are saved to the database along with the album, no User information is stored. This leads to problems in other views (where I list all users images, for instance).

So, the question is, how do I store the user information for each image at the time of upload? I'd really appreciate any help, I'm at a bit of a loss and documentation seems short for this situation. Thanks!

forms.py:

class ImageForm(forms.ModelForm):
    class Meta(object):
        model = Image
        exclude = ('user', 'order')
        description = forms.CharField(widget=forms.Textarea(attrs={'rows': 2, 'cols': 19}), required=False,
                                  label=_('Description'))

    def __init__(self, user, *args, **kwargs):
        super(ImageForm, self).__init__(*args, **kwargs)
        self.fields['album'].queryset = Album.objects.filter(user=user)
        self.fields['album'].required = True


class AlbumForm(forms.ModelForm):
    class Meta(object):
        model = Album
        exclude = ('user', 'created', 'updated')

    def __init__(self, *args, **kwargs):
        super(AlbumForm, self).__init__(*args, **kwargs)
        if 'instance' in kwargs and kwargs['instance']:
            self.fields['head'].queryset = Image.objects.filter(album=kwargs['instance'])
        else:
            self.fields['head'].widget = forms.HiddenInput()


AlbumImageFormSet = inlineformset_factory(
    Album,
    Image,
    exclude=('user'),
    extra=3
)

views.py

class UpdateAlbum(UpdateView):
    template_name = 'imagestore/forms/album_form.html'
    model = Album
    form_class = AlbumForm

    get_queryset = filter_album_queryset

    def form_valid(self, form):
        context = self.get_context_data()
        albumimage_form = context['albumimage_formset']
        if albumimage_form.is_valid():
            self.object = form.save(commit=False)
            self.object.user = self.request.user
            self.object = form.save()
            albumimage_form.instance = self.object
            albumimage_form.save()
            return HttpResponseRedirect(self.get_success_url())
        else:
            return self.render_to_response(self.get_context_data(form=form))

    def form_invalid(self, form):
        return self.render_to_response(self.get_context_data(form=form))

    def get_context_data(self, **kwargs):
        context = super(UpdateAlbum, self).get_context_data(**kwargs)
        self.object.user = self.request.user
        if self.request.POST:
            context['albumimage_formset'] = AlbumImageFormSet(self.request.POST,
                self.request.FILES, instance=self.object)
        else:
            context['albumimage_formset'] = AlbumImageFormSet(instance=self.object)
        return context
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.