A reuseable Django application for coupon gereration and handling.
Project description
#django-coupons

A reuseable Django application for coupon gereration and handling
## Setup instructions
Install django-coupons via pip: ` $ pip install django-coupons `
Add ‘coupons’ to INSTALLED_APPS in settings.py.
Migrate database:
` $ python manage.py migrate `
## Supported use cases of coupons
This application supports different kind of coupons in the way how they can be redeemed. The difference is defined by the number of possible redeems and if they are bound to a specific user (may even be a list of users) or not.
single time (default), coupon can be used one time without being bound to an user.
user limited, coupon can be used one time but only by a specific user.
limit number, coupon can be used a limited number of times, by any user once.
users list, coupon can be used by a defined list of users, each once.
unlimited, coupon can be used unlimited times, but only once by the same user.