Last change
on this file since 1557 was
1557,
checked in by joachim, 18 years ago
|
display a list of students for the CourseAdviser?
fix for issue #115
M profiles/default/vocabularies/searchable_student_states.xml
M skins/waeup_default/isCourseAdviser.py
M skins/waeup_student/search_students.py
M skins/waeup_student/get_searchable_student_states.py
M skins/waeup_student/students_index.py
M skins/waeup_student/search_students_form.pt
don't delete courses twice
M skins/waeup_student/course_result_delete.py
more detailed error messages for invalid PINs fix for issue #108
M Widgets.py
inform student to contact faculty, if no courses are available
fix for #116
M skins/waeup_student/study_level_view.pt
|
File size:
513 bytes
|
Line | |
---|
1 | ## Script (Python) "isClearanceOfficer" |
---|
2 | ##bind container=container |
---|
3 | ##bind context=context |
---|
4 | ##bind namespace= |
---|
5 | ##bind script=script |
---|
6 | ##bind subpath=traverse_subpath |
---|
7 | ##parameters= |
---|
8 | ##title= |
---|
9 | ## |
---|
10 | # $Id: isClearanceOfficer.py 1087 2006-12-18 22:13:31Z joachim $ |
---|
11 | |
---|
12 | #from Products.zdb import set_trace |
---|
13 | #set_trace() |
---|
14 | if context.isStudent(): |
---|
15 | return False |
---|
16 | mtool = context.portal_membership |
---|
17 | roles = mtool.getAuthenticatedMember().getRolesInContext(context) |
---|
18 | return str("CourseAdviser" in roles) |
---|
19 | return "CourseAdviser" in roles |
---|
20 | |
---|
Note: See
TracBrowser for help on using the repository browser.