X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/6c9978c5bf8b1ef20871557c22b8b02df647d700..e4c211d181cef7bc54c1888c23a8f2728314ca9b:/contact/views.py diff --git a/contact/views.py b/contact/views.py index 823c046..4d5a40f 100644 --- a/contact/views.py +++ b/contact/views.py @@ -1,4 +1,6 @@ # -*- coding: utf-8 -*- +from urllib import unquote + from django.contrib.auth.decorators import permission_required from django.http import Http404 from django.shortcuts import get_object_or_404, redirect, render @@ -55,4 +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) - return serve_file(attachment.file.url) + attachment_url = unquote(attachment.file.url) + return serve_file(attachment_url)