Hello All!
I am trying to have my users post multiple books via
Inlineformset_factory.  Basically, I am unable to do that
automatically via the following code without having them select their
name.  I get an error saying that 'User has no attribute 'get''.  Any
help is much appreciated.  Ken

models.py
=========
class Author(models.Model):
    name = models.CharField(max_length=100)
    user = models.ForeignKey(User)

class Book(models.Model):
    author = models.ForeignKey(Author)
    title = models.CharField(max_length=100)
    user = models.ForeignKey(User)

forms.py
========
class AuthorForm(forms.ModelForm):
    def __init__(self, user=None, *args, **kwargs):
        self.user = user
        super(AuthorForm, self).__init__(*args, **kwargs)

    class Meta:
        model = Author

BookFormSet = inlineformset_factory(Author, Book, extra=4, max_num=4,
can_delete=False, exclude ='user')


views.py
=========
def add_books(request, author_id):
    author = Author.objects.get(pk=author_id)
    if request.method == "POST":
        formset = BookFormSet(request.user, request.POST,
request.FILES, instance=author)
        if formset.is_valid():
            books = formset.save(commit=False)
            books.user = request.user
            books.save()
    else:
        formset = BookFormSet(instance=author)
    return render_to_response("manage_books.html", {
        "formset": formset,
    })

--

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


Reply via email to