Zach Bremmer

Results 2 issues of Zach Bremmer

I'm using dropzone in a flask application that uploads files to AWS S3. I have the following configuration for the dropzone: ``` app.config.update( DROPZONE_MAX_FILES=10, DROPZONE_PARALLEL_UPLOADS=3, DROPZONE_UPLOAD_MULTIPLE=True, DROPZONE_ALLOWED_FILE_CUSTOM=True, DROPZONE_MAX_FILE_SIZE=10000, DROPZONE_ALLOWED_FILE_TYPE=".xls, .xlsx,...

I'd like to modify the Day validator to allow for other date formats: MM/DD/YYYY, MM-DD-YYYY, DD-MM-YYYY, etc. The user could specify a specific format or omit the argument to allow...

enhancement