source: WAeUP_SRP/trunk/skins/waeup_student/students_index.py @ 1030

Last change on this file since 1030 was 1030, checked in by joachim, 19 years ago

made Widgets.py from Widgets_neu.py
corrected a syntax-error in Widgets.py
added some doubleclick error-checking in start_clearance (checked into Custom)
catch ConflictError? in PinTable?.
clearance_edit_form modified to catch anonymous access.
search_students.py + students_index.py actually unchanged.

  • Property svn:keywords set to Id
File size: 953 bytes
Line 
1## Script (Python) "students_indext"
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 1030 2006-12-11 18:12:23Z joachim $
11"""
12return the current students_index_html
13"""
14
15request = context.REQUEST
16redirect = request.RESPONSE.redirect
17mtool = context.portal_membership
18member = mtool.getAuthenticatedMember()
19
20if mtool.isAnonymousUser():
21    return redirect("%s/srp_anonymous_view" % context.portal_url())
22
23students_url = "%s/campus/students" % (context.portal_url.getPortalPath())
24
25if "ClearanceOfficers" in member.getGroups():
26    return context.waeup_tool.searchStudents()
27    #return redirect("%s/search_students" % students_url)
28if context.isSectionOfficer():
29    return redirect("%s/search_students" % students_url)
30if context.isStudent():
31    info = context.getStudentInfo()
32    student = info['student']
33    return redirect("%s/student_view" % student.absolute_url())
Note: See TracBrowser for help on using the repository browser.