Changeset 10470 for main/waeup.kofa/trunk/src/waeup
- Timestamp:
- 7 Aug 2013, 13:32:47 (11 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/browser/layout.py
r10458 r10470 225 225 self.widgets['next_kin_address'].height = 6 226 226 if self.widgets.get('transcript_comment'): 227 self.widgets['transcript_comment'].cssClass = 'span 8'228 self.widgets['transcript_comment'].height = 6227 self.widgets['transcript_comment'].cssClass = 'span12' 228 self.widgets['transcript_comment'].height = 12 229 229 if self.widgets.get('notice'): 230 230 self.widgets['notice'].cssClass = 'span8' -
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.