├── .editorconfig ├── .gitignore ├── .python-version ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── Pipfile ├── Pipfile.lock ├── README.md ├── prettyjson ├── __init__.py ├── models.py ├── static │ └── prettyjson │ │ ├── prettyjson.css │ │ └── prettyjson.js ├── templates │ └── prettyjson │ │ └── base.html ├── templatetags │ ├── __init__.py │ └── prettyjson.py └── widgets.py ├── requirements-test.txt ├── requirements.txt ├── requirements_dev.txt ├── runtests.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── test_models.py └── test_prettyjson.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/.python-version -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/Makefile -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/README.md -------------------------------------------------------------------------------- /prettyjson/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/prettyjson/__init__.py -------------------------------------------------------------------------------- /prettyjson/models.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /prettyjson/static/prettyjson/prettyjson.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/prettyjson/static/prettyjson/prettyjson.css -------------------------------------------------------------------------------- /prettyjson/static/prettyjson/prettyjson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/prettyjson/static/prettyjson/prettyjson.js -------------------------------------------------------------------------------- /prettyjson/templates/prettyjson/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/prettyjson/templates/prettyjson/base.html -------------------------------------------------------------------------------- /prettyjson/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prettyjson/templatetags/prettyjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/prettyjson/templatetags/prettyjson.py -------------------------------------------------------------------------------- /prettyjson/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/prettyjson/widgets.py -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django>=1.8 2 | standardjson>=0.3.1 3 | six>=1.10.0 4 | -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_prettyjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/tests/test_prettyjson.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmickey/django-prettyjson/HEAD/tox.ini --------------------------------------------------------------------------------