Metadata-Version: 1.1
Name: django-tasksoftheday
Version: 0.1
Summary: A simple Django app for task tracking.
Home-page: http://www.example.com/
Author: Simon Lenz
Author-email: dev@simon-lenz.de
License: MIT License
Description: =====
        Tasks of the Day
        =====
        
        Polls is a simple Django app to conduct Web-based polls. For each
        
        Quick start
        -----------
        
        1. Add "polls" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = (
                ...
                'tasksoftheday',
            )
        
        2. Include the polls URLconf in your project urls.py like this::
        
            url(r'^tasksoftheday/', include('tasksoftheday.urls')),
        
        3. Run `python manage.py migrate` to create the tasksoftheday models.
        
        4. Start the development server and visit http://127.0.0.1:8000/admin/
           to create a poll (you'll need the Admin app enabled).
        
        5. Visit http://127.0.0.1:8000/tasksoftheday/ 
        
        TODO
        ----
        - add multiple tasks at once screen (faster input)
        - add tomorrow button on datepicker field
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
