If I have a Manager like below:
class CurrentSitePublishedManager(CurrentSiteManager):
def get_query_set(self):
return super(CurrentSitePublishedManager,
self).get_query_set().filter(is_draft=False,
pub_date__lte=datetime.now())
And this "info" dictionary:
info_dict = {
'queryset': Entry.published_on_site.all(),
}
In generic views, my queryset is cached and I need restart my
application for get new itens. It is a bug? With default objects
manager, I don't have this problem.
Thanks,
semente
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---