how to upload files in viewflow

309 Views Asked by At

I'm trying to upload a document attached to the flow in viewflow as another field as would a string or an int, but when I put in the model

Answer = FilerFileField ()

I do not recognize it view flow in the fields

Fields = ["Answer"]

1

There are 1 best solutions below

1
kmmbvnr On

To upload files you need to use <form enctype=multipart/form-data> in the template

https://docs.djangoproject.com/en/1.11/topics/http/file-uploads/