A storage backend and demo for malhar-angular-dashboard. This allows you to save dashboards in Django. It uses the User model to remember dashboards per user. User must be logged in to work.
This project is a proof of concept. After I mess with it a bit more I may place a stable version on pypi.
fig up
- Syncdb with
fig run --rm web ./manage.py syncdb --all
- Go to http://localhost:8000/angular_dashboard/demo/
- Add
'angular_dashboard',
to INSTALLED_APPS - Add
url(r'^angular_dashboard/', include('angular_dashboard.urls')),
in urls.py - See /angular_dashboard/templates/angular_dashboard/dashboard.html and /angular_dashboard/static/angular_dashboard/app.js for example of using it.