[Django]-Django calendar app?

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/

Leave a comment