Last change
on this file since 881 was
874,
checked in by joachim, 18 years ago
|
first draft of view for ClearanceOfficers?
steps to make it work:
- Create a group CLearanceOfficers
- delegate SectionReader? to this Group in students
- Put the supposed CO's in this Group
- modify the cpsskinstheme like so:
if context.isStaff():
return 'WAeUP_Backoffice'
return 'WAeUP_Student'
|
-
Property svn:keywords set to
Id
|
File size:
356 bytes
|
Rev | Line | |
---|
[845] | 1 | ## Script (Python) "isStudent" |
---|
[600] | 2 | ##bind container=container |
---|
| 3 | ##bind context=context |
---|
| 4 | ##bind namespace= |
---|
| 5 | ##bind script=script |
---|
| 6 | ##bind subpath=traverse_subpath |
---|
[874] | 7 | ##parameters= |
---|
[600] | 8 | ##title= |
---|
| 9 | ## |
---|
[805] | 10 | # $Id: isStudent.py 874 2006-11-16 13:05:12Z joachim $ |
---|
[600] | 11 | """ |
---|
[603] | 12 | return True if the member is considered a Student |
---|
[600] | 13 | """ |
---|
[874] | 14 | roles = context.portal_membership.getAuthenticatedMember().getRolesInContext(context) |
---|
| 15 | return "Student" in roles |
---|
Note: See
TracBrowser for help on using the repository browser.