request.user will give you the User object from the  
django.contrib.auth.models, but Authors has no relation.

If you slightly modify your Book model to make authors relate to the  
above module, you can eliminate the Authors Model and the "user" of  
you Book model.

class Book(models.Model):
        ...
        authors = models.ManyToManyField(User, related_name='Entries')
        ...

Now in you view, all you have to do is:
def add_books(request):
        if not request.user.is_authenticated():
                return HttpResponseRedirect("accounts/login")
        if request.method == "POST":
                formset = BookFormSet(request.POST)
                if formset.is_valid():
                        formset.save()
                        return HttpResponseRedirect('books/latest.html')

I'm a n3wb so, I'm fishing to see if I'm understanding the same :]

-Frank

On Dec 2, 2009, at 8:06 AM, saved...@gmail.com wrote:

> 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 
> .
>
>

--

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