source: WAeUP_SRP/trunk/skins/waeup_student/get_searchable_student_states.py @ 874

Last change on this file since 874 was 874, checked in by joachim, 18 years ago

first draft of view for ClearanceOfficers?
steps to make it work:

  1. Create a group CLearanceOfficers
  2. delegate SectionReader? to this Group in students
  3. Put the supposed CO's in this Group
  4. modify the cpsskinstheme like so:

if context.isStaff():

return 'WAeUP_Backoffice'

return 'WAeUP_Student'

  • Property svn:keywords set to Id
File size: 549 bytes
Line 
1## Script (Python) "get_searchable_review_states"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=key=None
8##title=
9##
10# $Id: get_searchable_student_states.py 874 2006-11-16 13:05:12Z joachim $
11"""
12return the searchable student_states depending on context
13"""
14wftool = context.portal_workflow
15mtool = context.portal_membership
16member = mtool.getAuthenticatedMember()
17roles = member.getRolesInContext(context)
18voc = context.portal_vocabularies.searchable_student_states
19
20if key is None:
21    return voc.items()
22return voc.get(key)
23
24
Note: See TracBrowser for help on using the repository browser.