I'm looking for a robust, stable django file manager for use in the django admin.
My requirements wish list:
- Allows browsing and selecting files on the server (e.g. images)
- Allows uploading files. Multiple file upload would be great (with, e.g. uploadify)
- Does not require me to use a custom field in my model definitions (like django-filebrowser does). I want something that can ideally be attached to a CharField (or ImageField of FileField) in admin.py, like Carl Meyer's django-adminfiles.
I've used django-filebrowser (non-grappelli version) and also looked at (but not used) django-adminfiles. Both are very nice. But django-filebrowser requires using a custom field in my Models, plus I don't want the 'versions' (multiple image sizes) functionality. django-adminfiles is for inserting files as inlines into textareas, so is not what I'm looking for.
I'm happy to modify one of these to suit my needs, but would hate to do so if there are some other alternatives out there I'm missing.