Re: plotting queryset objects into a calendar

2007-02-12 Thread Patrick J. Anderson
On Mon, 12 Feb 2007 17:54:55 +, Patrick J. Anderson wrote: > On Mon, 12 Feb 2007 13:06:19 +, Patrick J. Anderson wrote: > >> I want to plot my milestones into a 28-week calendar using Django. What >> would be the best approach to doing that? >> >> I have the following code: >> >> >> [

Re: plotting queryset objects into a calendar

2007-02-12 Thread Patrick J. Anderson
On Mon, 12 Feb 2007 13:06:19 +, Patrick J. Anderson wrote: > I want to plot my milestones into a 28-week calendar using Django. What > would be the best approach to doing that? > > I have the following code: > > > [dashboardcalendar.py (custom template tag)] > > from datetime import datet

plotting queryset objects into a calendar

2007-02-12 Thread Patrick J. Anderson
I want to plot my milestones into a 28-week calendar using Django. What would be the best approach to doing that? I have the following code: [dashboardcalendar.py (custom template tag)] from datetime import datetime, timedelta from django.template import Library,Node register = Library() de