> I have a "poem" model that belongs to "user". The "poem" model an
> "approved" attribute. I want to print a list of users and display only
> their poems that are approved.
> 
> What do I specify in the Queryset to make this work?
> 
> I want to do something like this:
> u = User.objects.filter(poem.approved=True)

If you're interested in poems that have been approved, you want
something like

poems = Poems.objects.filter(approved=True, user=request.user)

Or perhaps you *do* want users and their approved poems in which
case you'd have something like

u = User.objects.filter(...users of interest...)

or perhaps

u = User.objects.filter(poem_set__approved=True)

and then in your template, you can have something like

 {% for user in users %}
   <h1>User: {{ user }}</h1>
   {% for poem in user.poems %}
     {% if poem.approved %}
      <p>{{ poem.title }}
     {% endif %}
   {% endfor %}
 {% endfor %}


-tim





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