I was reading the Making queries guide on the the website.
http://docs.djangoproject.com/en/dev/topics/db/queries/#topics-db-queries
It said:

>>> Blog.objects
<django.db.models.manager.Manager object at ...>
>>> b = Blog(name='Foo', tagline='Bar')
>>> b.objects
Traceback:
    ...
AttributeError: "Manager isn't accessible via Blog instances."

<django.db.models.manager.Manager object at ...>
What is this ... what is it, and why can't the page just say it.
Please no secrets.

I to do this, in this view all the time.

Blog.objects <django.db.models.manager.Manager object at ...>
t = time(user=user, fedtime=fedtime, worked=worked, date=date)
t.objects
time.objects.filter( user=username ).filter( PP=44 )

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

Reply via email to