Changeset 1608 for WAeUP_SRP/trunk/skins
- Timestamp:
- 20 Mar 2007, 15:48:45 (18 years ago)
- Location:
- WAeUP_SRP/trunk/skins/waeup_student
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_student/clearance_edit.py
r1575 r1608 120 120 wftool.doActionFor(info['clear'],'open') 121 121 wftool.doActionFor(info['student'],'reject_clearance') 122 action = "/ contact_student_form"122 action = "/external_contact_student_form" 123 123 psm = "Student's clearance request has been rejected! Please fill and submit the form below!" 124 124 subject = "Clearance request rejected" -
WAeUP_SRP/trunk/skins/waeup_student/mail2student.py
r1598 r1608 43 43 student_email, 44 44 co_email, 45 ' henrik@waeup.org',45 'waeup@saoas.org', 46 46 # 'js@aixtraware.de', 47 47 co_email, … … 59 59 psm = "Your message has been sent!" 60 60 args['portal_status_message'] = psm 61 url = context.absolute_url() + '/' + action + '?' + urlencode(args) 61 if action: 62 url = context.absolute_url() + '/' + action + '?' + urlencode(args) 63 else: 64 url = context.absolute_url() +'?' + urlencode(args) 62 65 return REQUEST.RESPONSE.redirect(url) 63 66 64 67 65 68 66
Note: See TracChangeset for help on using the changeset viewer.