Changeset 7549
- Timestamp:
- 1 Feb 2012, 11:24:35 (13 years ago)
- Location:
- main/waeup.sirp/trunk/src/waeup/sirp/students
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/students/browser.py
r7539 r7549 1025 1025 ticket.code = course.code 1026 1026 ticket.title = course.title 1027 ticket.faculty = course.__parent__.__parent__.__parent__.title1028 ticket.department = course.__parent__.__parent__.title1029 1027 ticket.fcode = course.__parent__.__parent__.__parent__.code 1030 1028 ticket.dcode = course.__parent__.__parent__.code -
main/waeup.sirp/trunk/src/waeup/sirp/students/browser_templates/courseticketmanagepage.pt
r7464 r7549 17 17 </td> 18 18 <td> 19 <span tal:replace="context/f aculty">FACULTY</span>19 <span tal:replace="context/fcode">FACULTY</span> 20 20 </td> 21 21 </tr> … … 25 25 </td> 26 26 <td> 27 <span tal:replace="context/d epartment">DEPARTMENT</span>27 <span tal:replace="context/dcode">DEPARTMENT</span> 28 28 </td> 29 29 </tr> -
main/waeup.sirp/trunk/src/waeup/sirp/students/browser_templates/courseticketpage.pt
r7464 r7549 14 14 </td> 15 15 <td> 16 <span tal:replace="context/d epartment">DEPARTMENT</span>16 <span tal:replace="context/dcode">DEPARTMENT</span> 17 17 </td> 18 18 </tr> … … 22 22 </td> 23 23 <td> 24 <span tal:replace="context/f aculty">FACULTY</span>24 <span tal:replace="context/fcode">FACULTY</span> 25 25 </td> 26 26 </tr> -
main/waeup.sirp/trunk/src/waeup/sirp/students/browser_templates/studyleveleditpage.pt
r7464 r7549 28 28 </a></td> 29 29 <td tal:content="value/title">TITLE</td> 30 <td tal:content="value/d epartment">DEPARTMENT</td>31 <td tal:content="value/f aculty">FACULTY</td>30 <td tal:content="value/dcode">DEPARTMENT</td> 31 <td tal:content="value/fcode">FACULTY</td> 32 32 <td tal:content="value/credits">CREDITS</td> 33 33 <td tal:content="value/score">SCORE</td> -
main/waeup.sirp/trunk/src/waeup/sirp/students/browser_templates/studylevelmanagepage.pt
r7484 r7549 69 69 </a></td> 70 70 <td tal:content="value/title">TITLE</td> 71 <td tal:content="value/d epartment">DEPARTMENT</td>72 <td tal:content="value/f aculty">FACULTY</td>71 <td tal:content="value/dcode">DEPARTMENT</td> 72 <td tal:content="value/fcode">FACULTY</td> 73 73 <td tal:content="value/credits">CREDITS</td> 74 74 <td tal:content="value/core_or_elective">MANDATORY</td> -
main/waeup.sirp/trunk/src/waeup/sirp/students/browser_templates/studylevelpage.pt
r7538 r7549 49 49 </a></td> 50 50 <td tal:content="value/title">TITLE</td> 51 <td tal:content="value/d epartment">DEPARTMENT</td>52 <td tal:content="value/f aculty">FACULTY</td>51 <td tal:content="value/dcode">DEPARTMENT</td> 52 <td tal:content="value/fcode">FACULTY</td> 53 53 <td tal:content="value/credits">CREDITS</td> 54 54 <td tal:content="value/core_or_elective">MANDATORY</td> -
main/waeup.sirp/trunk/src/waeup/sirp/students/interfaces.py
r7538 r7549 336 336 passmark = Attribute('passmark of the original course') 337 337 semester = Attribute('semester of the original course') 338 faculty = Attribute('faculty of the original course')339 department = Attribute('department of the original course')340 338 fcode = Attribute('faculty code of the original course') 341 339 dcode = Attribute('department code of the original course') -
main/waeup.sirp/trunk/src/waeup/sirp/students/studylevel.py
r7548 r7549 90 90 self.code = None 91 91 self.title = None 92 self.faculty = None93 self.department = None94 92 self.fcode = None 95 93 self.dcode = None
Note: See TracChangeset for help on using the changeset viewer.