A wrapper around the jQuery.fileupload library
Todo
This is part of a toolset called Bambu Tools. It's being moved from a namespace
of bambu
to its own 'root-level' package, along with all the other tools in
the set. If you're upgrading from a version prior to 2.0, please make sure to
update your code to use bambu_fileupload
rather than bambu.fileupload
.
Install the package via Pip:
pip install bambu-fileupload
Add it to your INSTALLED_APPS
list and add the necessary front-end libraries
to your BOWER_INSTALLED_APPS
list (see the
django-bower documentation)
for details on managing static files through Bower.
INSTALLED_APPS = (
...
'djangobower',
)
BOWER_INSTALLED_APPS = (
...
'jquery-hashchange',
'jquery-file-upload',
'jquery.iframe-transport'
)
Remember to run python manage.py bower install
,
python manage.py collectstatic
and python manage.py migrate
(or syncdb
).
Todo
Todo
Find me on Twitter (@iamsteadman) or visit my blog.