django-admin-multiupload icon indicating copy to clipboard operation
django-admin-multiupload copied to clipboard

Title Field

Open python-force opened this issue 7 years ago • 1 comments

Does the Title field work? How can I make it work when I type in a name into Title field and press Upload it will save it with the file?

python-force avatar Sep 15 '17 12:09 python-force

Take a look in the method process_uploaded_file

https://github.com/gkuhn1/django-admin-multiupload/blob/master/example/gallery/admin.py#L14

you have 3 parameters:

  • uploaded file
  • Parent instance (if exists otherwise None)
  • Request instance

Using the request instance like: request.POST you can get all fields from the posted form.

gkuhn1 avatar Sep 15 '17 17:09 gkuhn1