What's the justification for the date based generic views not showing
dates in the future?

I've got a model for community events that looks as follows:

class Event(models.Model):
    title = models.CharField(maxlength=200)
    slug = models.SlugField(prepopulate_from=("title",))
    pub_date = models.DateTimeField("date published", auto_now_add=True)
    start_date = models.DateTimeField("Event start date/time")
    end_date = models.DateTimeField("Event end date/time")
    body = models.TextField("Event Description")


I thought it would be nice to use the date based generic views, based
on the event's start_date, completely forgetting that the system will
not display them if they're in the future. And when inputting
community events, they'll all be in the future.

Can anyone think of a better way to do this that I'm missing? I don't
mind writing a patch against date_based.py (if people are interested),
but I'm not sure when I'll get the chance.

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

Reply via email to