├── .gitignore ├── CHANGELOG.txt ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── django_simple_coupons ├── __init__.py ├── actions.py ├── admin.py ├── apps.py ├── helpers.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py ├── validations.py └── views.py ├── docs ├── README.md ├── images │ ├── allowed-users-rule.png │ ├── coupon-create.png │ ├── coupon-user.png │ ├── discount-create.png │ ├── max-uses-rule.png │ └── validity-rule.png ├── models │ ├── Coupon.md │ ├── Coupon_User.md │ ├── Discount.md │ └── Ruleset.md └── validation │ └── Validations.md └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/README.md -------------------------------------------------------------------------------- /django_simple_coupons/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/django_simple_coupons/__init__.py -------------------------------------------------------------------------------- /django_simple_coupons/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/django_simple_coupons/actions.py -------------------------------------------------------------------------------- /django_simple_coupons/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/django_simple_coupons/admin.py -------------------------------------------------------------------------------- /django_simple_coupons/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/django_simple_coupons/apps.py -------------------------------------------------------------------------------- /django_simple_coupons/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/django_simple_coupons/helpers.py -------------------------------------------------------------------------------- /django_simple_coupons/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/django_simple_coupons/migrations/0001_initial.py -------------------------------------------------------------------------------- /django_simple_coupons/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_simple_coupons/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/django_simple_coupons/models.py -------------------------------------------------------------------------------- /django_simple_coupons/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/django_simple_coupons/tests.py -------------------------------------------------------------------------------- /django_simple_coupons/validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/django_simple_coupons/validations.py -------------------------------------------------------------------------------- /django_simple_coupons/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/images/allowed-users-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/docs/images/allowed-users-rule.png -------------------------------------------------------------------------------- /docs/images/coupon-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/docs/images/coupon-create.png -------------------------------------------------------------------------------- /docs/images/coupon-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/docs/images/coupon-user.png -------------------------------------------------------------------------------- /docs/images/discount-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/docs/images/discount-create.png -------------------------------------------------------------------------------- /docs/images/max-uses-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/docs/images/max-uses-rule.png -------------------------------------------------------------------------------- /docs/images/validity-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/docs/images/validity-rule.png -------------------------------------------------------------------------------- /docs/models/Coupon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/docs/models/Coupon.md -------------------------------------------------------------------------------- /docs/models/Coupon_User.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/docs/models/Coupon_User.md -------------------------------------------------------------------------------- /docs/models/Discount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/docs/models/Discount.md -------------------------------------------------------------------------------- /docs/models/Ruleset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/docs/models/Ruleset.md -------------------------------------------------------------------------------- /docs/validation/Validations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/docs/validation/Validations.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfterro/django-simple-coupons/HEAD/setup.py --------------------------------------------------------------------------------