Metadata-Version: 1.1
Name: django-dsm-feedback
Version: 0.1
Summary: A simple Django app to gather feedback on your site.
Home-page: https://www.example.com/
Author: DSM
Author-email: sumner.magruder@zmnh.uni-hamburg.de
License: BSD License
Description: ====
        Feedback
        ====
        
        Simple app for feedback
        
        Quick start
        -----------
        
        1. Add "feedback" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'feedback',
            ]
        
        2. Include the feedback URLconf in your project urls.py like this::
        
            path('feedback/', include('feedback.urls'))
        
        3. Run `python3 manage.py migrate` to create the feedback models.
        
        4. Start the development server and visit http://127.0.01:8000/admin/ to create
           a feedback (you'll need the Admin app enabled).
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
