Changeset 7663 for main/waeup.sirp/trunk/src/waeup/sirp
- Timestamp:
- 17 Feb 2012, 08:34:39 (13 years ago)
- Location:
- main/waeup.sirp/trunk/src/waeup/sirp/students
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/students/browser.py
r7662 r7663 809 809 label = 'Add course ticket' 810 810 form_fields = grok.AutoFields(ICourseTicketAdd).omit( 811 'grade', 'score', 'automatic' )811 'grade', 'score', 'automatic', 'carry_over') 812 812 pnav = 4 813 813 … … 1710 1710 grok.require('waeup.handleStudent') 1711 1711 form_fields = grok.AutoFields(ICourseTicketAdd).omit( 1712 'grade', 'score', 'core_or_elective', 'automatic' )1712 'grade', 'score', 'core_or_elective', 'automatic', 'carry_over') 1713 1713 1714 1714 def update(self): -
main/waeup.sirp/trunk/src/waeup/sirp/students/browser_templates/studyleveleditpage.pt
r7549 r7663 14 14 <th>Credits</th> 15 15 <th>Score</th> 16 <th>CO</th> 16 17 </tr> 17 18 </thead> … … 32 33 <td tal:content="value/credits">CREDITS</td> 33 34 <td tal:content="value/score">SCORE</td> 35 <td tal:content="value/carry_over">CO</td> 34 36 </tr> 35 37 </tbody> -
main/waeup.sirp/trunk/src/waeup/sirp/students/browser_templates/studylevelmanagepage.pt
r7549 r7663 50 50 <th>Code</th> 51 51 <th>Title</th> 52 <th>Dep artment</th>53 <th>Fac ulty</th>54 <th>Cred its</th>55 <th>Mand atory</th>52 <th>Dept.</th> 53 <th>Fact.</th> 54 <th>Cred.</th> 55 <th>Mand.</th> 56 56 <th>Score</th> 57 <th>CO</th> 57 58 <th>Auto</th> 58 59 </tr> … … 74 75 <td tal:content="value/core_or_elective">MANDATORY</td> 75 76 <td tal:content="value/score">SCORE</td> 77 <td tal:content="value/carry_over">CO</td> 76 78 <td tal:content="value/automatic">AUTO</td> 77 79 </tr> -
main/waeup.sirp/trunk/src/waeup/sirp/students/browser_templates/studylevelpage.pt
r7549 r7663 31 31 <thead> 32 32 <tr> 33 <th>Sem ester</th>33 <th>Sem.</th> 34 34 <th>Code</th> 35 35 <th>Title</th> 36 <th>Dep artment</th>37 <th>Fac ulty</th>38 <th>Cred its</th>39 <th>Mand atory</th>36 <th>Dept.</th> 37 <th>Fact.</th> 38 <th>Cred.</th> 39 <th>Mand.</th> 40 40 <th>Score</th> 41 <th>CO</th> 41 42 <th>Auto</th> 42 43 </tr> … … 54 55 <td tal:content="value/core_or_elective">MANDATORY</td> 55 56 <td tal:content="value/score">SCORE</td> 57 <td tal:content="value/carry_over">CO</td> 56 58 <td tal:content="value/automatic">AUTO</td> 57 59 </tr>
Note: See TracChangeset for help on using the changeset viewer.