I've got one view where I want the queryset to be a standard
objects.all(), but I also want to use a datetime.now() to pass in
"upcoming" events. I do this:

def get_upcoming():
    return 
Event.objects.filter(end_date__gte=datetime.now()).order_by('end_date')

urlpatterns = patterns('django.views.generic.list_detail',
        (r'^/?$', 'object_list', dict(info_dict,allow_empty=True,
                         extra_context={'upcoming_events':get_upcoming}))
)

The trick here is that Django allows you to pass in functions as
dictionary values. I don't remember if you can use a function for the
'queryset' value, but it definitely works inside of extra_context.

Jay P.

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