Changeset 15294 for main/kofacustom.coewarri
- Timestamp:
- 10 Jan 2019, 15:58:13 (6 years ago)
- Location:
- main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/students
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/students/browser.py
r14719 r15294 70 70 Faculty = translate(_('Faculty'), 'waeup.kofa', target_language=portal_language) 71 71 Cred = translate(_('Cred.'), 'waeup.kofa', target_language=portal_language) 72 #Mand = translate(_('Requ.'), 'waeup.kofa', target_language=portal_language)72 CC = translate(_('Cat.'), target_language=portal_language) 73 73 Score = translate(_('Score'), 'waeup.kofa', target_language=portal_language) 74 74 Grade = translate(_('Grade'), 'waeup.kofa', target_language=portal_language) … … 87 87 (Dept,'dcode', 1.5), (Faculty,'fcode', 1.5), 88 88 (Cred, 'credits', 1.5), 89 #(Mand, 'mandatory', 1.5),89 (CC, 'course_category', 1.2), 90 90 (Score, 'score', 1.5), 91 91 (Grade, 'grade', 1.5), 92 #('Auto', 'automatic', 1.5)93 92 ]) 94 93 return students_utils.renderPDF( -
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/students/browser_templates/studyleveleditpage.pt
r15293 r15294 21 21 <th i18n:translate="">CO</th> 22 22 <th i18n:translate="">OS</th> 23 <th i18n:translate="">CC</th> 23 24 </tr> 24 25 </thead> … … 41 42 <td tal:content="value/carry_over">CO</td> 42 43 <td tal:content="value/outstanding">OS</td> 44 <td tal:content="value/course_category">CC</td> 43 45 </tr> 44 46 </tbody> -
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/students/browser_templates/studylevelmanagepage.pt
r15293 r15294 48 48 <th i18n:translate="">CO</th> 49 49 <th i18n:translate="">OS</th> 50 <th i18n:translate="">CC</th> 50 51 <th i18n:translate="">Auto</th> 51 52 </tr> … … 69 70 <td tal:content="value/carry_over">CO</td> 70 71 <td tal:content="value/outstanding">OS</td> 72 <td tal:content="value/course_category">CC</td> 71 73 <td tal:content="value/automatic">AUTO</td> 72 74 </tr> -
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/students/browser_templates/studylevelpage.pt
r15293 r15294 32 32 <th i18n:translate="">CO</th> 33 33 <th i18n:translate="">OS</th> 34 <th i18n:translate="">CC</th> 34 35 <th i18n:translate="">Auto</th> 35 36 </tr> … … 50 51 <td tal:content="value/carry_over">CO</td> 51 52 <td tal:content="value/outstanding">OS</td> 53 <td tal:content="value/course_category|nothing">CC</td> 52 54 <td tal:content="value/automatic">AUTO</td> 53 55 </tr> … … 58 60 CO: Carry-over course<br /> 59 61 OS: Outstanding course<br /> 62 CC: Course Category (C or E)<br /> 60 63 Requ.: Required course<br /> 61 64 Auto: Automatically created course ticket
Note: See TracChangeset for help on using the changeset viewer.