Changeset 10280 for main/waeup.aaue/trunk
- Timestamp:
- 6 Jun 2013, 10:28:26 (12 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue/students
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/browser.py
r10269 r10280 79 79 form_fields = grok.AutoFields(ICustomStudentStudyLevel).omit( 80 80 'level_session', 'level_verdict', 81 'validated_by', 'validation_date' , 'gpa')81 'validated_by', 'validation_date') 82 82 83 83 omit_fields = ('password', 'suspended', 'suspended_comment', -
main/waeup.aaue/trunk/src/waeup/aaue/students/interfaces.py
r10102 r10280 86 86 ) 87 87 88 gpa = schema.Int(89 title = _(u'GPA'),90 required = False,91 readonly = True,92 )93 94 88 class ICustomStudentOnlinePayment(ICustomOnlinePayment): 95 89 """A student payment via payment gateways. -
main/waeup.aaue/trunk/src/waeup/aaue/students/studylevel.py
r9914 r10280 57 57 CustomStudentStudyLevel = attrs_to_fields( 58 58 CustomStudentStudyLevel, omit=[ 59 'total_credits', 'total_credits_s1', 'total_credits_s2' , 'gpa'])59 'total_credits', 'total_credits_s1', 'total_credits_s2']) 60 60 61 61 class CustomStudentStudyLevelFactory(StudentStudyLevelFactory):
Note: See TracChangeset for help on using the changeset viewer.