Changeset 17405 for main/kofacustom.edocons
- Timestamp:
- 8 May 2023, 17:21:10 (18 months ago)
- Location:
- main/kofacustom.edocons/trunk/src/kofacustom/edocons/students
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/batching.py
r17363 r17405 55 55 'title', 'credits', 'passmark', 'semester', 'ticket_session', 56 56 'unlock_score', 'previous', 'carryover_score', 'in_progress', 57 'resumption_date' 57 'resumption_date', 'rst_grade', 'attempted_number' 58 58 ] + self.additional_fields 59 59 return sorted(fields) -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/interfaces.py
r17363 r17405 102 102 ) 103 103 104 attempted_number = schema.Int( 105 title = _(u'Attempted Number'), 106 default = None, 107 required = False, 108 missing_value = None, 109 max = 5, 110 ) 111 112 rst_grade = schema.TextLine( 113 title = _(u'RST Grade'), 114 required = False, 115 ) 116 104 117 in_progress = schema.Bool( 105 title = _(u'Course in progress'),118 title = _(u'Course in Progress'), 106 119 default = False, 107 120 required = False, … … 135 148 ) 136 149 137 carryover_score = schema.Int(138 title = _(u'Carry-over Score'),139 default = None,140 required = False,141 missing_value = None,142 max = 100,143 )144 145 150 class ICustomStudentUpdateByRegNo(INigeriaStudentUpdateByRegNo): 146 151 """Representation of a student. Skip regular reg_number validation.
Note: See TracChangeset for help on using the changeset viewer.