├── .gitignore ├── CONTRIBUTORS ├── LICENSE ├── MANIFEST.in ├── README.rst ├── django_histograms ├── __init__.py ├── admin.py ├── models.py ├── templates │ ├── admin │ │ └── report.html │ └── histograms │ │ └── report.html ├── templatetags │ ├── __init__.py │ └── histograms.py └── utils.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/django-admin-histograms/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/django-admin-histograms/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/django-admin-histograms/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/django-admin-histograms/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/django-admin-histograms/HEAD/README.rst -------------------------------------------------------------------------------- /django_histograms/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.1-pre" 2 | -------------------------------------------------------------------------------- /django_histograms/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/django-admin-histograms/HEAD/django_histograms/admin.py -------------------------------------------------------------------------------- /django_histograms/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_histograms/templates/admin/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/django-admin-histograms/HEAD/django_histograms/templates/admin/report.html -------------------------------------------------------------------------------- /django_histograms/templates/histograms/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/django-admin-histograms/HEAD/django_histograms/templates/histograms/report.html -------------------------------------------------------------------------------- /django_histograms/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_histograms/templatetags/histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/django-admin-histograms/HEAD/django_histograms/templatetags/histograms.py -------------------------------------------------------------------------------- /django_histograms/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/django-admin-histograms/HEAD/django_histograms/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/django-admin-histograms/HEAD/setup.py --------------------------------------------------------------------------------