Changeset 14575 for main/waeup.kofa/trunk/src/waeup/kofa
- Timestamp:
- 23 Feb 2017, 14:14:20 (8 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa/students
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/students/browser.py
r14314 r14575 130 130 value_dict['carry_over'] = translate(str(value.carry_over), 'zope', 131 131 target_language=lang) 132 value_dict['outstanding'] = translate(str(value.outstanding), 'zope', 133 target_language=lang) 132 134 value_dict['automatic'] = translate(str(value.automatic), 'zope', 133 135 target_language=lang) -
main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/studyleveleditpage.pt
r12473 r14575 20 20 <th i18n:translate="">Score</th> 21 21 <th i18n:translate="">CO</th> 22 <th i18n:translate="">OS</th> 22 23 </tr> 23 24 </thead> … … 39 40 <td tal:content="value/score|nothing">SCORE</td> 40 41 <td tal:content="value/carry_over">CO</td> 42 <td tal:content="value/outstanding">OS</td> 41 43 </tr> 42 44 </tbody> -
main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/studylevelmanagepage.pt
r11254 r14575 47 47 <th i18n:translate="">Score</th> 48 48 <th i18n:translate="">CO</th> 49 <th i18n:translate="">OS</th> 49 50 <th i18n:translate="">Auto</th> 50 51 </tr> … … 67 68 <td tal:content="value/score|nothing">SCORE</td> 68 69 <td tal:content="value/carry_over">CO</td> 70 <td tal:content="value/outstanding">OS</td> 69 71 <td tal:content="value/automatic">AUTO</td> 70 72 </tr> -
main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/studylevelpage.pt
r11254 r14575 31 31 <th i18n:translate="">Grade</th> 32 32 <th i18n:translate="">CO</th> 33 <th i18n:translate="">OS</th> 33 34 <th i18n:translate="">Auto</th> 34 35 </tr> … … 48 49 <td tal:content="value/grade|nothing">GRADE</td> 49 50 <td tal:content="value/carry_over">CO</td> 51 <td tal:content="value/outstanding">OS</td> 50 52 <td tal:content="value/automatic">AUTO</td> 51 53 </tr> … … 53 55 </table> 54 56 57 <p i18n:translate=""> 58 CO: Carry-over course<br /> 59 OS: Outstanding course<br /> 60 Requ.: Required course<br /> 61 Auto: Automatically created course ticket 62 </p> 63 55 64 <div i18n:domain="waeup.kofa" 56 65 tal:condition="python: not len(context.keys())" i18n:translate="">
Note: See TracChangeset for help on using the changeset viewer.