fnp
/
edumed.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
314942a
)
fix attachment download
author
Jan Szejko
<jan.szejko@gmail.com>
Tue, 26 Apr 2016 14:40:13 +0000
(16:40 +0200)
committer
Jan Szejko
<jan.szejko@gmail.com>
Tue, 26 Apr 2016 14:40:13 +0000
(16:40 +0200)
contact/views.py
patch
|
blob
|
history
diff --git
a/contact/views.py
b/contact/views.py
index
243b8fc
..
4d5a40f
100644
(file)
--- a/
contact/views.py
+++ b/
contact/views.py
@@
-57,5
+57,5
@@
def thanks(request, form_tag):
@permission_required('contact.change_attachment')
def attachment(request, contact_id, tag):
attachment = get_object_or_404(Attachment, contact_id=contact_id, tag=tag)
@permission_required('contact.change_attachment')
def attachment(request, contact_id, tag):
attachment = get_object_or_404(Attachment, contact_id=contact_id, tag=tag)
- attachment_url = unquote(attachment.file.url)
.decode('utf-8')
+ attachment_url = unquote(attachment.file.url)
return serve_file(attachment_url)
return serve_file(attachment_url)