Ignore:
Timestamp:
17 Jun 2013, 07:00:04 (11 years ago)
Author:
Henrik Bettermann
Message:

Apply two-columns design for some base data fields like in students module.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/browser/pdf.py

    r9980 r10310  
    625625                        domain='waeup.kofa', separators=None,
    626626                        course_label=None, course_link=None, dept=None,
    627                         faculty=None):
     627                        faculty=None, colWidths=None):
    628628        """Return a reportlab `Table` instance, created from widgets
    629629        determined by `form_fields` and `context`.
     
    687687
    688688        # Create table
    689         table = Table(table_data,style=table_style) #, rowHeights=14)
     689        table = Table(
     690            table_data,style=table_style, colWidths=colWidths) #, rowHeights=14)
    690691        table.hAlign = 'LEFT'
    691692        return table
Note: See TracChangeset for help on using the changeset viewer.