Metadata-Version: 2.1
Name: django-surveys
Version: 1.1.0
Summary: A reusable Django app that lets users write feedback for any model
Home-page: https://github.com/founders4schools/django-surveys
Author: Founders4Schools
Author-email: dev@founders4schools.org.uk
License: MIT
Keywords: django-surveys
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: django
Requires-Dist: django-model-utils
Requires-Dist: djangorestframework (>=3.7)
Requires-Dist: django-braces (>=1.10.0)

==============
Django Surveys
==============

.. image:: https://badge.fury.io/py/django-surveys.svg
    :target: https://badge.fury.io/py/django-surveys
    :alt: PyPI

.. image:: https://travis-ci.org/founders4schools/django-surveys.svg?branch=master
    :target: https://travis-ci.org/founders4schools/django-surveys
    :alt: Build

.. image:: https://readthedocs.org/projects/django-surveys/badge/?version=latest
    :target: http://django-surveys.readthedocs.io
    :alt: Docs

.. image:: https://landscape.io/github/founders4schools/django-surveys/master/landscape.svg?style=flat
    :target: https://landscape.io/github/founders4schools/django-surveys/master
    :alt: Code Health

A reusable Django app that lets users write feedback for any model

Documentation
-------------

The full documentation is at https://django-surveys.readthedocs.io.

Running Tests
-------------

Does the code actually work?

::

    source <YOURVIRTUALENV>/bin/activate
    (myenv) $ pip install tox
    (myenv) $ tox

Credits
-------

Tools used in rendering this package:

*  Cookiecutter_
*  `cookiecutter-djangopackage`_

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage




History
-------

Unreleased
++++++++++

1.1.0 (2018-06-04)
++++++++++++++++++

* Add support for Django 2.0

1.0.0 (2018-06-01)
++++++++++++++++++

* Drop support for Django <1.11 and Python <3.5

0.4.2 (2017-06-09)
++++++++++++++++++

* Add `on_delete=models.CASCADE` on foreign keys for Django 2.0
* Django 1.11 support

0.4.1 (2017-05-09)
++++++++++++++++++

* [BUG] `#16`_ Fix package of the library to include all templates

.. _#16: https://github.com/founders4schools/django-surveys/issues/16

0.4.0 (2017-03-10)
++++++++++++++++++

* [FEATURE] Template tags to send rating related emails
* Run tests against Django 1.11 and master
* [DOC] Added pull request template with basic checklist

0.3.1 (2017-01-04)
++++++++++++++++++

* [BUG] Fix migration for replaceable foreign key `Review.user`

0.3.0 (2016-12-23)
++++++++++++++++++

* [IMPROVEMENT] Added `on_delete=models.CASCADE` to all ForeignKeys,
  it'll become required in Django 2.0.
* [FEATURE] Added `created` and `updated` fields to all models using
  the `TimeStampedModel` from `Django model utils`_. generated 3
  migrations to preserve the existing `timestamp` that was present on
  the `Review` model.
* [DOC] Corrected links in Changelog

.. _Django model utils: https://django-model-utils.readthedocs.io/en/latest/models.html#timestampedmodel

0.2.0 (2016-12-23)
++++++++++++++++++

* `#5`_ [FEATURE] Ability to customise the reviewer model
* [IMPROVEMENT] Namespaced the app settings a la DRF

.. _#5: https://github.com/founders4schools/django-surveys/issues/5

0.1.1 (2016-12-23)
++++++++++++++++++

* `#6`_ [BUG] Fix error message when rating is out of bounds

.. _#6: https://github.com/founders4schools/django-surveys/issues/6

0.1.0 (2016-12-22)
++++++++++++++++++

* First release on PyPI.


