clarify the submitter name in the application pdf

It was not clear, that the submitter should sign the formular
This commit is contained in:
Oskar Hahn 2012-09-13 12:16:46 +02:00
parent 48a992119a
commit 0725003377

View File

@ -715,7 +715,7 @@ class ApplicationPDF(PDFView):
if application.status == "pub": if application.status == "pub":
cell1b.append(Paragraph("__________________________________________",stylesheet['Signaturefield'])) cell1b.append(Paragraph("__________________________________________",stylesheet['Signaturefield']))
cell1b.append(Spacer(0,0.1*cm)) 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)) cell1b.append(Spacer(0,0.2*cm))
else: else:
cell1b.append(Paragraph(unicode(application.submitter), stylesheet['Normal'])) cell1b.append(Paragraph(unicode(application.submitter), stylesheet['Normal']))