On Mon, 2007-03-05 at 23:51 +0000, akonsu wrote:
> hello,
> 
> can a template invoke a method with parameters on a QuerySet object?
> e.g. get(), filter(), etc.
> 
> or do i need a custom filter/tag for that?

You won't be able to pass arguments to the method call if you just
called it in a template, so you will need to write a custom filter or
tag for this, yes.

What I'm talking about here is that if you write {{ foo.bar }} in a
template, Django will take the foo object and try to do a dictionary or
attribute or method lookup (in that order) on the name. If it's a
method, it will call it. However, you cannot pass arguments to the
method -- which you would need to do when calling many methods on a
QuerySet.

Regards,
Malcolm



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