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
|
Rev | Line | |
---|
[1031] | 1 | ## Script (Python) "students_index" |
---|
[535] | 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 | ## |
---|
[805] | 10 | # $Id: students_index.py 1557 2007-03-15 16:00:27Z joachim $ |
---|
[535] | 11 | """ |
---|
[542] | 12 | return the current students_index_html |
---|
[535] | 13 | """ |
---|
| 14 | |
---|
| 15 | request = context.REQUEST |
---|
| 16 | redirect = request.RESPONSE.redirect |
---|
[874] | 17 | mtool = context.portal_membership |
---|
| 18 | member = mtool.getAuthenticatedMember() |
---|
[542] | 19 | |
---|
[874] | 20 | if mtool.isAnonymousUser(): |
---|
[681] | 21 | return redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
[542] | 22 | |
---|
[1163] | 23 | students_url = "%s/campus/students" % (context.portal_url()) |
---|
[542] | 24 | |
---|
[1557] | 25 | if "ClearanceOfficers" in member.getGroups() or\ |
---|
| 26 | "CourseAdvisers" in member.getGroups(): |
---|
[1239] | 27 | return redirect("%s/search_students" % context.portal_url()) |
---|
[937] | 28 | if context.isSectionOfficer(): |
---|
[1239] | 29 | return redirect("%s/search_students" % context.portal_url()) |
---|
[603] | 30 | if context.isStudent(): |
---|
[1163] | 31 | id = str(member) |
---|
| 32 | return redirect("%s/%s/student_view" % (students_url, id)) |
---|
Note: See
TracBrowser for help on using the repository browser.