Ignore:
Timestamp:
19 Feb 2013, 20:03:25 (12 years ago)
Author:
Henrik Bettermann
Message:

In order to render one signature table per signature we need to produce a tuple of signature lists.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.aaue/trunk/src/waeup/aaue/students/browser.py

    r9920 r9968  
    103103
    104104    def _signatures(self):
    105         return (_('Date, Student\'s Signature'),
    106                 _('Date, Head of Department\'s Signature'),
    107                 _('Date, Principal Assistant Registrar\'s Signature'),
    108                 _('Date, Director\'s Signature'))
     105        return (
     106            [('I have selected the course on the advise of my Head of '
     107             'Department. <br>', _('Student\'s Signature'), '<br>')],
     108            [('This student has satisfied the department\'s requirements. '
     109             'I recommend to approve the course registration. <br>',
     110             _('Head of Department\'s Signature'), '<br>')],
     111            [('' , _('Principal Assistant Registrar\'s Signature'), '<br>')],
     112            [('', _('Director\'s Signature'))]
     113            )
    109114
    110115    def render(self):
Note: See TracChangeset for help on using the changeset viewer.