Skip to content

ephes/django-filepond

Repository files navigation

Django Filepond

https://travis-ci.org/ephes/django-filepond.svg?branch=master

Django support for the fjavascript file upload library filepond

Documentation

The full documentation is at https://django-filepond.readthedocs.io.

Quickstart

Install Django Filepond:

pip install django-filepond

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'filepond.apps.FilepondConfig',
    ...
)

Add Django Filepond's URL patterns:

from filepond import urls as filepond_urls


urlpatterns = [
    ...
    url(r'^', include(filepond_urls)),
    ...
]

Features

  • TODO

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Tools used in rendering this package: