Skip to content

Instantly share code, notes, and snippets.

@ethanholda
Created May 8, 2014 15:19
Show Gist options
  • Save ethanholda/658f9a15b1d607dba1ef to your computer and use it in GitHub Desktop.
Save ethanholda/658f9a15b1d607dba1ef to your computer and use it in GitHub Desktop.
File upload field
self.form_extra_fields = {
'image_file': FileUploadField(label="Upload Image",
base_path=self.base_path + "/images",
allowed_extensions=['jpg', 'JPG', 'jpeg', 'JPEG'],
validators=[validate_image])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment