Changeset 15896 for main/waeup.aaue/trunk/src
- Timestamp:
- 18 Dec 2019, 15:34:16 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/browser.py
r15876 r15896 35 35 from waeup.kofa.students.interfaces import ( 36 36 IStudentsUtils, IStudent, IStudentRequestPW, IStudentStudyLevel) 37 from waeup.kofa.students.workflow import PAID, REGISTERED, RETURNING 37 from waeup.kofa.students.workflow import PAID, REGISTERED, RETURNING, GRADUATED 38 38 from waeup.kofa.students.browser import ( 39 39 StartClearancePage, … … 739 739 """Deliver a PDF slip of the context. 740 740 """ 741 # grok.require('waeup.viewStudent')742 741 743 742 note = _(""" … … 752 751 753 752 def _signatures(self): 754 return ([( 755 'O.O OHIKHENA (Manupa)<br />Principal Asst. Registrar<br /> ' 756 'Exams, Records and Data Processing Division <br /> For: Registrar')],) 753 if self.context.student.state == GRADUATED: 754 return ([( 755 'O.O OHIKHENA (Manupa)<br />' 756 'Principal Asst. Registrar<br /> ' 757 'Exams, Records and Data Processing Division <br /> ' 758 'For: Registrar')],) 759 return 760 757 761 758 762 def render(self): … … 1035 1039 imported_ts = ticket.imported_ts 1036 1040 sid = ticket.student.student_id 1041 if sid not in formvals: 1042 continue 1037 1043 if formvals[sid][0] == '': 1038 1044 score = None
Note: See TracChangeset for help on using the changeset viewer.