Hi, Here is my problem, summarized by this web page: I would like to display only the public documents of a given project (not the private ones). Class Document has a ForeignKey field on class Project, and a BooleanField (is_public).
My condition is: I just pass the Project object to my template. Now how can I display only the public documents in that template? I could build a custom method (get_public_documents) on model Project. But the documentation suggests that model methods are 'row-level' oriented. Custom manager methods would be more appropriate, I guess, but I do not know where to start, and how to call it in my web page. Can you please give me clues about the most Django-esque way to do this? Truth is, I am going to reuse that filter many times. Thanks for your enlightment! --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---