Dimtable is a Python library that provides editable, multidimensional HTML tables that can be easily mapped to data storage.
Django model integration is provided out of the box.
- Install Django
- Install git
- Checkout git repository from https://github.com/tmu/dimtable
export PYTHONPATH=<path to the root of the project, i.e. the dir that contains README.md>
e.g.
export PYTHONPATH=~/dimtable
cd djangoexample
mysql --user=root -p < create_db.sql
python manage.py syncdb
python manage.py create_ex1_data
python manage.py collectstatic
python manage.py runserver