Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/alex/django-admin-histograms

A library for simple histograms in Django's admin.
https://github.com/alex/django-admin-histograms

Last synced: 3 months ago
JSON representation

A library for simple histograms in Django's admin.

Lists

README

        

django-admin-histograms
=======================

To use this app simple have your ``ModelAdmin`` subclass
``django_histograms.admin.HistogramAdmin`` and give it a ``histogram_field``
attribute with the name of a ``DateField`` or ``DateTimeField`` to create the
histogram over. Then you can pull up
``localhost:8000/your_app/your_model/report/`` to see the histogram (adjust the
URL as necessary).

The designs came from Wilson Miner's article on data visualization for A List
Apart.

Using histograms in other pages
===============================

You can use the built-in ``histogram_for`` template tag::

{% load histograms %}
{% histogram_for appname.Model 'histogram_field' 1 1 %}