Metadata-Version: 2.0
Name: forman
Version: 0.1.3
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
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

=====
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. Visit http://127.0.0.1:8000/survey/<survey_id> to fill in survey
6. Visit http://127.0.0.1:8000/survey/<survey_id>/download to download a csv of submissions

