Metadata-Version: 1.1
Name: forman
Version: 0.1.4
Summary: A simple Django app to create surveys and manage submissions
Home-page: https://www.cognitev.com/
Author: Cognitev
Author-email: ag@menacommerce.com
License: BSD License
Description: =====
        forman
        =====
        
        forman is a simple Django app to create survery forms and collect and export submissions
        
        Quick start
        -----------
        
        1. Add "forman" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'forman',
            ]
        
        2. Include the polls URLconf in your project urls.py like this::
        
            url(r'^forman/', include('forman.urls',namespace='forman')),
        
        3. Run `python manage.py migrate` to create the forman models.
        
        4. Start the development server and visit http://127.0.0.1:8000/admin/
           to create a survey (you'll need the Admin app enabled).
        5. configure settings.FORMAN['sender_email'] and settings.FORMAN['receiver_emails'] values
        6. Visit http://127.0.0.1:8000/survey/<survey_id> to fill in survey
        7. Visit http://127.0.0.1:8000/survey/<survey_id>/download to download a csv of submissions
        
        TODO
        ----
        
        1. Preview link in admin panel
        2. Better input rendering (specially radio buttons)
        3. Themes for forms
        4. Better success and failure messages (form submission)
        5. Better export formats for submissions
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
