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

Last change on this file since 1680 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

  • Property svn:keywords set to Id
File size: 920 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 1557 2007-03-15 16:00:27Z 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 not None:
21    return voc.get(key)
22if "ClearanceOfficers" in member.getGroups():
23    return [item for item in voc.items() if item[0].startswith('clear') or
24                                         item[0] in ("all",)]
25elif "CourseAdvisers" in member.getGroups():
26    return [item for item in voc.items() if item[0].startswith('courses') or
27                                         item[0] in ("all",)]
28return voc.items()
29
30
Note: See TracBrowser for help on using the repository browser.