On Sep 17, 2005, at 8:14 AM, PythonistL wrote:

registrations.get_list(order_by=['Email'], limit=35)

that it can be used in 'extra_lookup_kwargs'syntax ?


extra_lookup_kwargs = {
    'order_by' : ['Email'],
    'limit'    : 15,
}


2. How can I use the result of the query in my templates?


Same as if you didn't have extra_lookup_kwargs: read from {{ object_list }} in the template.

Jacob

Reply via email to