install the stats app
pip install -e git+https://github.com/buildingenergy/seed_demo_app.git#egg=seed_demo_app
add stats
to your Django setting's INSTALLED_APPS
:
INSTALLED_APPS += ('stats',)
add stats
to your url routes:
url(r'stats/', include('stats.urls', app_name='stats')),
go to /stats/
in your browser...
that's it!