/django-filer

File and Image Management Application for django

Primary LanguagePythonBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

django-filer

A file management application for django that makes handling of files and images a breeze.

file browser

Filer picker widget: file-picker-widget-screeshot

Documentation: http://django-filer.readthedocs.org/en/latest/index.html

Wiki: https://github.com/stefanfoulis/django-filer/wiki

Dependencies

  • Django >= 1.4 (with django.contrib.staticfiles)
  • django-mptt >= 0.2.1
  • easy_thumbnails >= 1.0-alpha-17
  • django-polymorphic >= 0.2
  • PIL 1.1.7 (with JPEG and ZLIB support) or Pillow 2.3.0 (with JPEG and ZLIB support, Better to use Pillow)

Installation

To get started using django-filer simply install it with pip:

$ pip install django-filer

Configuration

Add "filer", "mptt" and "easy_thumbnails" to your project's INSTALLED_APPS setting and run syncdb (and migrate if you're using South).

See the docs for advanced configuration:

Testsuite

The easiest way to run the testsuite is to checkout the code, make sure you have PIL installed, and run:

python setup.py test

For serious testing tox is recommended. See documentation for details.