Reputation: 17034
I've been looking at django-swingtime, django-schedule and django-agenda.
Any recommendations of which is them easier to use, and if so any practical code examples out there? Couldn't find useful documentation or examples in the respective projects.
My requirement is to have a number of events and track their occurrences, but the events are custom things, for example, a project management system where a regular amount of time is spent on each project where an event is a task and the occurrences are the hours spent regularly on each task.
Upvotes: 12
Views: 12937
Reputation: 566
Based on @Maccesch 's answer and having in mind that I'm a total beginner to Django I could only get Django Happenings to work: https://github.com/wreckage/django-happenings I hope this project will continue to exist.
Upvotes: 0
Reputation: 2128
I don't know if you already checked django-packages but it has a small grid about these: http://www.djangopackages.com/grids/g/calendar/
Upvotes: 13
Reputation: 1266
if your requirement is just to display the calendar on certain data which you have in database then i recommend the use of inbuilt HTMLcalendar in python2.5 which is easy to use.
More details you can find at http://journal.uggedal.com/creating-a-flexible-monthly-calendar-in-django
Upvotes: 3