├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── README.md ├── qrcode ├── __init__.py ├── models.py ├── templates │ └── qrcode │ │ └── qr_tag.html ├── templatetags │ ├── __init__.py │ └── qr_tags.py ├── tests.py ├── utils.py └── views.py └── setup.py /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablorecio/django-qrcode/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablorecio/django-qrcode/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablorecio/django-qrcode/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablorecio/django-qrcode/HEAD/README.md -------------------------------------------------------------------------------- /qrcode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qrcode/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablorecio/django-qrcode/HEAD/qrcode/models.py -------------------------------------------------------------------------------- /qrcode/templates/qrcode/qr_tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablorecio/django-qrcode/HEAD/qrcode/templates/qrcode/qr_tag.html -------------------------------------------------------------------------------- /qrcode/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qrcode/templatetags/qr_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablorecio/django-qrcode/HEAD/qrcode/templatetags/qr_tags.py -------------------------------------------------------------------------------- /qrcode/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablorecio/django-qrcode/HEAD/qrcode/tests.py -------------------------------------------------------------------------------- /qrcode/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablorecio/django-qrcode/HEAD/qrcode/utils.py -------------------------------------------------------------------------------- /qrcode/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablorecio/django-qrcode/HEAD/setup.py --------------------------------------------------------------------------------