mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
41d3c24a3b
django-filer is a file management application for django. It handles uploading and organizing files and images in contrib.admin. WWW: http://pypi.python.org/pypi/django-filer/ WWW: https://github.com/stefanfoulis/django-filer PR: ports/169249 Submitted by: Matthew X. Economou <xenophon+fbsdports@irtnog.org>
21 lines
740 B
Plaintext
21 lines
740 B
Plaintext
**********************************************************************
|
|
|
|
Add "filer" to your project's INSTALLED_APPS setting and run syncdb
|
|
(or migrate if you're using South).
|
|
|
|
You might consider using django-filer with the django CMS plugin and
|
|
its components instead of cms.plugins.file, cms.plugins.picture,
|
|
cms.plugins.teaser and cms.plugins.video core plugins. In this case
|
|
you should not add them to INSTALLED_APPS but add those instead:
|
|
|
|
'filer'
|
|
'cmsplugin_filer_file'
|
|
'cmsplugin_filer_folder'
|
|
'cmsplugin_filer_image'
|
|
'cmsplugin_filer_teaser'
|
|
'cmsplugin_filer_video'
|
|
|
|
(Note that this also requires the installation of cmsplugin-filer.)
|
|
|
|
**********************************************************************
|