This is a fork of the interesting Django-cron which actualy creates a way o have access to the cron launched in the Django-admin
We juste added the possibility to "improve" the retrieved information in the admin view by concatenating the LOG message with two different attibute of the cron that can be then modified as needed instead of just writing something when there is an error
Django-cron lets you run Django/Python code on a recurring basis providing basic plumbing to track and execute tasks. The 2 most common ways in which most people go about this is either writing custom python scripts or a management command per cron (leads to too many management commands!). Along with that some mechanism to track success, failure etc. is also usually necesary.
This app solves both issues to a reasonable extent. This is by no means a replacement for queues like Celery ( http://celeryproject.org/ ) etc.
http://django-cron.readthedocs.org/en/latest/
This open-source app is brought to you by Tivix, Inc. ( http://tivix.com/ )