- Timestamp:
- 16 Jun 2014, 08:29:22 (10 years ago)
- Location:
- main/kofacustom.sampleuni/trunk/src/kofacustom/sampleuni
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.sampleuni/trunk/src/kofacustom/sampleuni/students/student.py
r10765 r11687 25 25 from waeup.kofa.students.interfaces import IStudentNavigation 26 26 from waeup.kofa.utils.helpers import get_current_principal 27 from kofacustom.nigeria.students.student import NigeriaStudent28 from kofacustom.s keleton.students.interfaces import ICustomStudent27 from waeup.kofa.students.student import Student 28 from kofacustom.sampleuni.students.interfaces import ICustomStudent 29 29 30 30 31 class CustomStudent( NigeriaStudent):31 class CustomStudent(Student): 32 32 """This is a student container for the various objects 33 33 owned by students. … … 39 39 def transcript_enabled(self): 40 40 user = get_current_principal() 41 if user.id in ('admin' , 'isouaba', 'niyi', 'delejason'):41 if user.id in ('admin'): 42 42 return True 43 43 return False
Note: See TracChangeset for help on using the changeset viewer.