Last change
on this file since 1565 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:
906 bytes
|
Line | |
---|
1 | ## Script (Python) "students_index" |
---|
2 | ##bind container=container |
---|
3 | ##bind context=context |
---|
4 | ##bind namespace= |
---|
5 | ##bind script=script |
---|
6 | ##bind subpath=traverse_subpath |
---|
7 | ##parameters=batch=None |
---|
8 | ##title= |
---|
9 | ## |
---|
10 | # $Id: students_index.py 1557 2007-03-15 16:00:27Z joachim $ |
---|
11 | """ |
---|
12 | return the current students_index_html |
---|
13 | """ |
---|
14 | |
---|
15 | request = context.REQUEST |
---|
16 | redirect = request.RESPONSE.redirect |
---|
17 | mtool = context.portal_membership |
---|
18 | member = mtool.getAuthenticatedMember() |
---|
19 | |
---|
20 | if mtool.isAnonymousUser(): |
---|
21 | return redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
22 | |
---|
23 | students_url = "%s/campus/students" % (context.portal_url()) |
---|
24 | |
---|
25 | if "ClearanceOfficers" in member.getGroups() or\ |
---|
26 | "CourseAdvisers" in member.getGroups(): |
---|
27 | return redirect("%s/search_students" % context.portal_url()) |
---|
28 | if context.isSectionOfficer(): |
---|
29 | return redirect("%s/search_students" % context.portal_url()) |
---|
30 | if context.isStudent(): |
---|
31 | id = str(member) |
---|
32 | return redirect("%s/%s/student_view" % (students_url, id)) |
---|
Note: See
TracBrowser for help on using the repository browser.