Changeset 14065 for main/waeup.kofa
- Timestamp:
- 9 Aug 2016, 19:17:24 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/pdf.py
r14063 r14065 129 129 doc_title = '\n'.join([x.strip() for x in self.title.split(' - ')]) 130 130 data = [] 131 topMargin = 1.5 131 132 if len(self.title.split(' - ')) > 2: 132 data.append(Spacer(1, 20))133 topMargin = 1.8 133 134 portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE 134 135 separators = getUtility(IApplicantsUtils).SEPARATORS_DICT … … 204 205 note = login_information 205 206 206 return creator.create_pdf(data, None, doc_title, note=note) 207 return creator.create_pdf(data, None, doc_title, note=note, 208 topMargin=topMargin)
Note: See TracChangeset for help on using the changeset viewer.