Teplitsa / MikroAct

Repository of the MikroAct project. So far, this is a closed repository.
1 stars 0 forks source link

Photo URL #19

Closed danselden closed 11 years ago

danselden commented 11 years ago

Errors: The 'photo' attribute has no file associated with it.

using: img src="{{ mikroact.photo.url }}" after uploading photo, no feedback currently about the upload so not sure if the upload is actually happening. is there a way to confirm the upload happens before submitting the form?

supervacuo commented 11 years ago

From Django docs:

Note that request.FILES will only contain data if the request method was POST and the

that posted the request has the attribute enctype="multipart/form-data". Otherwise, request.FILES will be empty.

supervacuo commented 11 years ago

& to avoid the error, use an {% if templatetag, e.g. {% if mikroact.photo %}...