3

everyone. I'm developing a meeting room reserving system with django for my company. I need a calender compontent in this system. I want to view my events in daily, weekly and monthly view, just like Google calendar. Is there any existing app helpful to me?

guoqiao
  • 1,309
  • 12
  • 14
  • possible duplicate of [Django Calendar Widget?](http://stackoverflow.com/questions/45264/django-calendar-widget) Did you try searching? – Spacedman Apr 06 '12 at 07:52

1 Answers1

6

Django's class based views support day, month and year views out-of-the-box. We used these for a simple calendar app in a project (example), works like a charm. We used Python's calendar lib as a starting point for a generic templatetag.

I googled for a similar idea and found this: http://code.google.com/p/django-gencal/

Hedde van der Heide
  • 21,841
  • 13
  • 71
  • 100
  • I have also used django-gencal (based itself on Python's Calendar lib) as a starting point to make my own templatetag: easy and flexible. – AJJ Apr 06 '12 at 09:42