Ignore:
Timestamp:
22 Oct 2014, 06:26:31 (10 years ago)
Author:
Henrik Bettermann
Message:

Add application_slip_notice field to ApplicantsContainer?.

File:
1 edited

Legend:

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

    r10650 r11869  
    4545    grok.implements(IPDF)
    4646    grok.name('application_slip')
    47     note = None
    4847
    4948    form_fields =  grok.AutoFields(IApplicant).omit(
     
    5453        'firstname', 'middlename', 'lastname')
    5554    two_columns_design_fields = []
     55
     56    @property
     57    def note(self):
     58        return getattr(self.context.__parent__, 'application_slip_notice', None)
    5659
    5760    @property
Note: See TracChangeset for help on using the changeset viewer.