juliomalegria / django-chunked-upload

Upload large files to Django in multiple chunks, with the ability to resume if the upload is interrupted.
MIT No Attribution
214 stars 71 forks source link

messages after upload #31

Closed Flinkas closed 7 years ago

Flinkas commented 7 years ago

Hi There!

the method get_response_data() returns a Success message. Is there a way to include more information like:

messages = {} messages.update({'message': ('Success')}) messages.update({'message': ('Whatever...')}) ... return messages

The actual code prints only the last entry of this return.