From: Jan Szejko Date: Mon, 16 Jan 2017 09:15:39 +0000 (+0100) Subject: prettify abbreviated filename X-Git-Url: https://git.mdrn.pl/edumed.git/commitdiff_plain/78847af2ffb6c7d513e08c2e8f66663903038b84 prettify abbreviated filename --- diff --git a/stage2/views.py b/stage2/views.py index 6b04a57..59c2d82 100644 --- a/stage2/views.py +++ b/stage2/views.py @@ -55,7 +55,7 @@ def attachment_download(attachment): response = HttpResponse(content_type='application/force-download') response.write(attachment.file.read()) base, ext = attachment.filename().rsplit('.', 1) - response['Content-Disposition'] = 'attachment; filename="%s.%s"' % (base[:10].replace('\n', ''), ext) + response['Content-Disposition'] = 'attachment; filename="%s.%s"' % (base[:20].replace('\n', '').strip(), ext) response['Content-Length'] = response.tell() return response