Changeset 10470 for main/waeup.kofa/trunk/src/waeup/kofa/students
- Timestamp:
- 7 Aug 2013, 13:32:47 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/students/browser.py
r10466 r10470 1197 1197 return 1198 1198 1199 class StudentTranscriptRequestManageFormPage(KofaEditFormPage): 1200 """ Page to edit personal data by student 1201 """ 1202 grok.context(IStudent) 1203 grok.name('manage_transcript_request') 1204 grok.require('waeup.manageStudent') 1205 form_fields = grok.AutoFields(IStudentTranscript) 1206 label = _('Manage transcript request') 1207 pnav = 4 1208 1209 @action(_('Save'), style='primary') 1210 def save(self, **data): 1211 msave(self, **data) 1212 return 1213 1199 1214 class StudyCourseTranscriptPage(KofaDisplayFormPage): 1200 1215 """ Page to display the student's transcript.
Note: See TracChangeset for help on using the changeset viewer.