I have the following models:

class Bill(models.Model):
    date = models.DateTimeField(_("Date of bill"),null=True,blank=True)

class Item(models.Model):
    name = models.CharField(_("Name"),max_length=100)
    price = models.FloatField(_("Price"))
    quantity = models.IntegerField(_("Quantity"))
    bill = models.ForeignKey("Bill",verbose_name=_("Bill"),
                             related_name="billitem")

I know that this is possible:

from django.forms.models import inlineformset_factory
inlineformset_factory(Bill, Item)

and then process this via standard view.

Now I was wondering, if there is a way to achieve the same (meaning: using a inline for adding/editing items belonging to a bill) using class based views (not for the admin-interface).

link|improve this question
feedback

4 Answers

up vote 10 down vote accepted

Looks like someone did manage to figure out an implementation here: http://haineault.com/blog/155/

Key points, in case this is ever a 404:

  1. generated FormSets within forms.py using inlineformset_factory:

    BookImageFormSet = inlineformset_factory(BookForm, BookImage, extra=2)
    BookPageFormSet = inlineformset_factory(BookForm, BookPage, extra=5)
    
  2. returned the FormSets within a CreateView class in views.py:

    def get_context_data(self, **kwargs):
        context = super(BookCreateView, self).get_context_data(**kwargs)
        if self.request.POST:
            context['bookimage_form'] = BookImageFormSet(self.request.POST)
            context['bookpage_form'] = BookPageFormSet(self.request.POST)
        else:
            context['bookimage_form'] = BookImageFormSet()
            context['bookpage_form'] = BookPageFormSet()
    return context
    
  3. Used form_valid to save the form and formset:

     def form_valid(self, form):
         context = self.get_context_data()
         bookimage_form = context['bookimage_formset']
         bookpage_form = context['bookpage_formset']
         if bookimage_form.is_valid() and bookpage_form.is_valid():
             self.object = form.save()
             bookimage_form.instance = self.object
             bookimage_form.save()
             bookpage_form.instance = self.object
             bookpage_form.save()
             return HttpResponseRedirect('thanks/')
         else:
             return self.render_to_response(self.get_context_data(form=form))
    
link|improve this answer
I haven't tested the code to see if it actually works, but the source code all looks good. – Jordan Reiter Jul 25 '11 at 18:20
I can confirm that the code above works fine, but I can't seem to figure out how to use a class-based update view (so UpdateView with inline formsets); the existing model data simply never enters the formset. – praseodym Jul 29 '11 at 0:28
You could probably change BookImageFormSet() to BookImageFormSet(instance=self.instance) although again I haven't tested... – Jordan Reiter Aug 2 '11 at 0:56
I think it'd be self.object, as opposed to self.instance – orokusaki Oct 12 '11 at 4:19
feedback

I red the generic source code of the 1.3-beta-1 :

The code is absolutely not ready for List editing or there is some black magic here. But I think that it can be implemented quickly.

If you look at the django.view.generic.edit (that support detailed object editing) module how it use the django.view.generic.detail module.

I think that a django.view.generic.list_edit module can be implemented using django.view.generic.list and some part from django.view.generic.edit.

link|improve this answer
Yes, I read that part. Though it is not an answer for "automatic" in-lines, as it states there: "A mixin that can be used to display a list of objects." I would like to add/edit/delete inlines, not diplay them ;) – Hixi Jan 25 '11 at 7:05
How is this an accepted answer? – airstrike May 23 '11 at 13:22
Hixi was wondering if a feature was available with DJANGO -1.3- and using class based view. I red the django source code and the feature is clearly NOT IMPLEMENTED (in django 1.3 beta 1). I give some hint to help to implement not the full developpment. – VGE May 23 '11 at 15:52
feedback

I made some modification to original solution to let formset.is_valid() to work:

    if self.request.POST:
        context['fs'] = MyInlineFS(self.request.POST, instance=self.object)
    else:
        context['fs'] = MyInlineFS(instance=self.object)
link|improve this answer
feedback

you can use the inline formsets in normal views:

http://docs.djangoproject.com/en/dev/topics/forms/modelforms/#using-an-inline-formset-in-a-view

link|improve this answer
That's already stated in the question. I was wondering about class based views, NOT standard views. docs.djangoproject.com/en/dev/topics/class-based-views – Hixi Jan 14 '11 at 7:02
feedback

Your Answer

 
or
required, but never shown

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