- Timestamp:
- 20 Sep 2012, 08:49:37 (12 years ago)
- Location:
- main/waeup.kofa/branches/uli-zc-async
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/branches/uli-zc-async
- Property svn:mergeinfo changed
-
main/waeup.kofa/branches/uli-zc-async/src/waeup/kofa/students/studycourse.py
r8736 r9209 61 61 @property 62 62 def is_postgrad(self): 63 if self.certificate is None: 64 return False 63 65 return self.certificate.study_mode.startswith('pg') 64 #return cert.start_level == 999 or cert.end_level == 999 66 67 @property 68 def is_current(self): 69 if '_' in self.__name__: 70 return False 71 return True 65 72 66 73 def addStudentStudyLevel(self, cert, studylevel):
Note: See TracChangeset for help on using the changeset viewer.