Re: A calendar-like view in Django/Python...

2007-01-16 Thread Rubic
ashwoods wrote: using ical would probably be interesting too... http://www.devoesquared.com/Software/iCal_Module Some additional icalendar modules written in Python: http://codespeak.net/icalendar/ http://vobject.skyhouseconsulting.com -- Jeff Bauer Rubicon, Inc.

Re: A calendar-like view in Django/Python...

2007-01-16 Thread mediumgrade
I found this: http://python.about.com/od/advancedpython/ss/howtocal.htm --~--~-~--~~~---~--~~ 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

Re: A calendar-like view in Django/Python...

2007-01-14 Thread ashwoods
using ical would probably be interesting too... http://www.devoesquared.com/Software/iCal_Module On Jan 14, 3:48 am, "mediumgrade" <[EMAIL PROTECTED]> wrote: I have written an application that keeps track of appointments for my technicians. My partners would like to be able to view the

Re: A calendar-like view in Django/Python...

2007-01-14 Thread Guillermo Fernandez Castellanos
Hi, I've done something very similar myself and I've found the python module 'calendar' very useful, specially the monthcalendar function. If you're using the 2.5 version, they have the HTMLCalendar class, that looks also very promising :-) If you are interested in the specific code, send me

A calendar-like view in Django/Python...

2007-01-13 Thread mediumgrade
I have written an application that keeps track of appointments for my technicians. My partners would like to be able to view the appointments in a "calendar-like" format which can be viewed and/or printed. Am I making sense? Is there already some kind of library in Django and/or Python that does