From da5e9139cf8ae0fa0f075f08a0aaff23ffa58d84 Mon Sep 17 00:00:00 2001 From: "J.-S. Caux" <J.S.Caux@uva.nl> Date: Mon, 16 May 2016 16:12:34 +0200 Subject: [PATCH] Correct bug in vet Commentary: refuse (thanks to Max) --- commentaries/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commentaries/views.py b/commentaries/views.py index a3ba89cff..add29c186 100644 --- a/commentaries/views.py +++ b/commentaries/views.py @@ -281,7 +281,7 @@ def vet_commentary_request_ack(request, commentary_id): email_text = ('Dear ' + title_dict[commentary.requested_by.title] + ' ' + commentary.requested_by.user.last_name + ', \n\nThe Commentary Page you have requested, concerning publication with title ' + commentary.pub_title + ' by ' + commentary.author_list + ', has not been activated for the following reason: ' + - commentary_refusal_dict[form.cleaned_data['refusal_reason']] + '.\n\nThank you for your interest, \nThe SciPost Team.') + commentary_refusal_dict[int(form.cleaned_data['refusal_reason'])] + '.\n\nThank you for your interest, \nThe SciPost Team.') if form.cleaned_data['email_response_field']: email_text += '\n\nFurther explanations: ' + form.cleaned_data['email_response_field'] emailmessage = EmailMessage('SciPost Commentary Page activated', email_text, 'SciPost commentaries <commentaries@scipost.org>', -- GitLab