django-filer tools and extentions
The full documentation is at https://filertools.readthedocs.io.
Install filertools:
pip install filertools
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'filertools.filerface',
...
'filer',
...
'filertools.filertools',
...
)
Specify custom filer File model:
FILER_FILE_MODELS = ['filertools.filertools.models.OrderedFile']
Add filertools's URL patterns:
from filertools import urls as filertools_urls
urlpatterns = [
...
url(r'^filer-api/', include('filertools.filertools.urls')),
...
]
- Filer menu on django-cms toolbar.
- Filer files custom ordering in the directory listing view.
- Async folder searching for files copy and move.
- Coping of folder tree structure.
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate (myenv) $ pip install tox (myenv) $ tox