From 07250033774343177cb16eb9faeac797733374c2 Mon Sep 17 00:00:00 2001 From: Oskar Hahn Date: Thu, 13 Sep 2012 12:16:46 +0200 Subject: [PATCH] clarify the submitter name in the application pdf It was not clear, that the submitter should sign the formular --- openslides/application/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openslides/application/views.py b/openslides/application/views.py index 18bef8a1b..5588f2cee 100644 --- a/openslides/application/views.py +++ b/openslides/application/views.py @@ -715,7 +715,7 @@ class ApplicationPDF(PDFView): if application.status == "pub": cell1b.append(Paragraph("__________________________________________",stylesheet['Signaturefield'])) cell1b.append(Spacer(0,0.1*cm)) - cell1b.append(Paragraph("       "+unicode(application.submitter), stylesheet['Small'])) + cell1b.append(Paragraph(_("Signature: %s") % application.submitter, stylesheet['Small'])) cell1b.append(Spacer(0,0.2*cm)) else: cell1b.append(Paragraph(unicode(application.submitter), stylesheet['Normal']))