Changeset 9631
- Timestamp:
- 14 Nov 2012, 09:09:14 (12 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/searchpage.pt
r7811 r9631 13 13 <th i18n:translate="">Code</th> 14 14 <th i18n:translate="">Title</th> 15 <th i18n:translate="">Faculty</th> 16 <th i18n:translate="">Department</th> 15 17 <th i18n:translate="">Type</th> 16 18 </tr> … … 25 27 TITLE 26 28 </td> 29 <td tal:content="item/fac"> 30 FACULTY 31 </td> 32 <td tal:content="item/dep"> 33 DEPARTMENT 34 </td> 27 35 <td tal:content="item/type"> 28 36 TTYPE -
main/waeup.kofa/trunk/src/waeup/kofa/students/batching.py
r9479 r9631 780 780 if row['current_verdict'] in (IGNORE_MARKER, ''): 781 781 return 'No verdict in import file.' 782 # Check if studylevel exists #782 # Check if studylevel exists 783 783 level_string = str(obj.current_level) 784 784 if obj.get(level_string) is None: -
main/waeup.kofa/trunk/src/waeup/kofa/university/catalog.py
r8920 r9631 139 139 self.title = context.title 140 140 self.code = context.code 141 self.dep = context.__parent__.__parent__.code 142 self.fac = context.__parent__.__parent__.__parent__.code 141 143 self.type = 'Course' 142 144 … … 149 151 self.title = context.title 150 152 self.code = context.code 153 self.dep = context.__parent__.__parent__.code 154 self.fac = context.__parent__.__parent__.__parent__.code 151 155 self.type = 'Certificate' 152 156 … … 159 163 self.title = context.course.title 160 164 self.code = context.getCourseCode 165 self.dep = context.__parent__.__parent__.__parent__.code 166 self.fac = context.__parent__.__parent__.__parent__.__parent__.code 161 167 self.type = 'Certificate Course' 162 168
Note: See TracChangeset for help on using the changeset viewer.