Chris, I have a utility function that does this for me.  You can call it
from your view, or if you set things up right from your template:

from datetime import date
def most_recent_Sunday(dt = None) :
  if dt is None : dt = date.today()
  return date.fromordinal(date.toordinal(dt) - (dt.weekday() + 1) %7)

  -- Scott

On Thu, Jun 26, 2008 at 11:36 AM, Chris H. <[EMAIL PROTECTED]>
wrote:

>
> I have a view which returns a group of upcoming events.  I would like
> to display the events grouped by week:
>
> Week of June 22
> * Event 1
> * Event 2
> * Event 3
>
> Week of June 29
> * Event 4
> * Event 5
> * Event 6
>
> I've seen examples for doing this using the ifchanged tag, and I've
> got that working.  But I can't seem to figure out how to display the
> beginning of the week as the heading since the first event isn't
> always a Sunday.  Any thoughts or pointers?
> >
>


-- 
http://scott.andstuff.org/ | http://truthadorned.org/

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