Metadata-Version: 1.1
Name: django-datebook
Version: 0.1.3
Summary: 
A Django application to manage user Datebook

Home-page: http://pypi.python.org/pypi/django-datebook
Author: David Thenon
Author-email: sveetch@gmail.com
License: MIT
Description: Introduction
        ============
        
        Django datebook is.. a datebook !
        
        This aims to manage user datebooks by months. A datebook contain day entries where you can add details, start and stop working hours, vacation, etc..
        
        This does not aims to reproduce some advanced apps like Google calendar or alike, datebook is simple and will have a particular workflow for our needs at `Emencia <http://emencia.com>`_.
        
        Actually this is only a prototype, more details to come..
        
        TODO
        ----
        
        * User permission, restriction access, etc..;
        * Better ergonomy;
        * Add "DayEntry templates" model to fill day entries content from a template string;
        * Add "Reminder" model which can be global reminder for all datebooks, or just reminder associated for a single datebook (~=month year);
        * i18n and FR translations;
        
        
        Links
        -----
        
        * Clone it on his `Github repository <https://github.com/sveetch/django-datebook>`_;
        
        Install
        =======
        
        Add it to your installed apps in settings : ::
        
            INSTALLED_APPS = (
                ...
                'datebook',
                ...
            )
        
        Finally mount its urls in your main ``urls.py`` : ::
        
            urlpatterns = patterns('',
                ...
                (r'^datebook/', include('datebook.urls')),
                ...
            )
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Python Modules
