Changeset 10333
- Timestamp:
- 21 Jun 2013, 15:42:30 (11 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/pdf.py
r10332 r10333 129 129 # append history 130 130 data.extend(creator.fromStringList(self.context.history.messages)) 131 data.append(Spacer(1, 20))131 data.append(Spacer(1, 5)) 132 132 133 133 # create two-column header table -
main/waeup.kofa/trunk/src/waeup/kofa/browser/pdf.py
r10328 r10333 91 91 fontName='Helvetica', 92 92 fontSize=10, 93 leading=9, 93 94 ) 94 95 … … 700 701 if twoDataCols is True and lines > 2: 701 702 table_left = Table(table_data[:middle], 702 style=table_style, colWidths=[ 4*cm, 5*cm])703 style=table_style, colWidths=[3*cm, 6.3*cm]) 703 704 table_right = Table(table_data[middle:], 704 style=table_style, colWidths=[ 4*cm, 5*cm])705 table_style.append(('LEFTPADDING', (0,0), (0,-1), 3.147*cm),)705 style=table_style, colWidths=[3*cm, 6.3*cm]) 706 table_style.append(('LEFTPADDING', (0,0), (0,-1), 1.2*cm),) 706 707 table = Table([[table_left, table_right],],style=table_style) 707 708 return table
Note: See TracChangeset for help on using the changeset viewer.