/django-filebrowser-browse-upload-field

For use with Django Filebrowser. (This is for the no-grappelli fork but might work without modification of the original). A model field and widget that combines the normal FilebrowseField with the direct upload functionality of the UploadField. The widget has both an upload and browse button.

Primary LanguagePythonOtherNOASSERTION

Django FileBrowser Browse and Upload Field

This field combines the normal FilebrowseField with the direct upload functionality of the UploadField. The widget has both an upload and browse button.

Requirements

Installation

  • add 'browse_and_upload_field' to INSTALLED_APPS

  • from browse_and_upload_field.fields import FileBrowseAndUploadField

  • Use in the same way as the existing FileBrowseField and UploadField

    my_image = FileBrowseAndUploadField(null=True, blank=True, format="image", directory='images', upload_to='images')