Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which is the better of the django event apps?

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.

like image 542
Swaroop C H Avatar asked May 24 '09 12:05

Swaroop C H


People also ask

What is an app in Django?

A Django app is a small library representing a discrete part of a larger project. For example, our blog web application might have an app for posts, one for static pages like an About page called pages, and another app called payments to charge logged-in subscribers.

Are there any websites that use Django framework?

There are many more popular websites and apps using Django Framework and their implementation is the same as covered by the above apps. There are thousands of websites that use Django Framework but we don’t need to study all of those.

Is Django a good choice for startups?

So Django is a perfect solution for both startups and large companies. Scalability is one of the best features of Django and it enables any application to handle any audience volume growth with efficiency as well.

What is a project in Django virtual environment?

We're now working within a virtual environment shell with Django installed. A project is a web application using Django. There is only ever one project and many "apps" within it. So for our blog web application, we need to create it and assign a name like config.


1 Answers

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/

like image 125
Maccesch Avatar answered Sep 20 '22 21:09

Maccesch