Changeset 10650 for main/waeup.kofa/trunk/src/waeup/kofa/browser
- Timestamp:
- 25 Sep 2013, 06:46:53 (11 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa/browser
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/browser/breadcrumbs.py
r9818 r10650 182 182 @property 183 183 def title(self): 184 return self.context.longtitle ()184 return self.context.longtitle 185 185 186 186 class DepartmentBreadcrumb(FacultyBreadcrumb): … … 217 217 @property 218 218 def title(self): 219 return self.context.longtitle ()219 return self.context.longtitle 220 220 221 221 def getBreadcrumb(obj, viewname=None): -
main/waeup.kofa/trunk/src/waeup/kofa/browser/pages.py
r10649 r10650 1865 1865 @property 1866 1866 def label(self): 1867 return _('Find students in ') + ('%s' % self.context.longtitle ())1867 return _('Find students in ') + ('%s' % self.context.longtitle) 1868 1868 1869 1869 def _find_students(self,query=None, searchtype=None, view=None): … … 2330 2330 @property 2331 2331 def label(self): 2332 return '%s' % (self.context.longtitle ())2332 return '%s' % (self.context.longtitle) 2333 2333 2334 2334 @property -
main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/certificatecoursepage.pt
r9320 r10650 18 18 <td i18n:translate="">Provided by:</td> 19 19 <td> 20 <span tal:content="python: context.course.__parent__.__parent__.longtitle ()">DEPARTMENT</span>20 <span tal:content="python: context.course.__parent__.__parent__.longtitle">DEPARTMENT</span> 21 21 <br /> 22 <span tal:content="python: context.course.__parent__.__parent__.__parent__.longtitle ()">FACULTY</span>22 <span tal:content="python: context.course.__parent__.__parent__.__parent__.longtitle">FACULTY</span> 23 23 </td> 24 24 </tr>
Note: See TracChangeset for help on using the changeset viewer.