Changeset 937 for WAeUP_SRP/trunk/skins
- Timestamp:
- 25 Nov 2006, 09:00:34 (18 years ago)
- Location:
- WAeUP_SRP/trunk/skins
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_academics/academics_index.py
r901 r937 21 21 else: 22 22 if context.portal_type == 'AcademicsFolder': 23 return context.academics .academics_view()23 return context.academics_view() 24 24 elif context.portal_type == 'Faculty': 25 25 return context.faculty_view() -
WAeUP_SRP/trunk/skins/waeup_accommodation/acco_folder_index.py
r903 r937 10 10 # $Id$ 11 11 """ 12 return the appropriate page in the ac ademicssection12 return the appropriate page in the accommodation section 13 13 """ 14 14 … … 17 17 pm = context.portal_membership 18 18 19 campus = context.portal_catalog(meta_type = "University")[-1].getObject() 20 21 if context.isSectionManager(): 19 if context.isSectionOfficer(): 22 20 if context.portal_type == 'AccoFolder': 23 21 return context.accommodation.acco_folder_view() -
WAeUP_SRP/trunk/skins/waeup_student/clearance_edit_lib.pt
r911 r937 29 29 <!-- buttons --> 30 30 <metal:block define-macro="buttons"> 31 <!-- Section Manager -->32 <tal:block condition="context/isSection Manager">31 <!-- SectionOfficer --> 32 <tal:block condition="context/isSectionOfficer"> 33 33 34 34 <div tal:condition="python:info['review_state'] == 'clearance_pin_entered'"> -
WAeUP_SRP/trunk/skins/waeup_student/students_index.py
r920 r937 25 25 if "ClearanceOfficers" in member.getGroups(): 26 26 return redirect("%s/search_students" % students_url) 27 if context.isSection Manager():27 if context.isSectionOfficer(): 28 28 return redirect("%s/search_students" % students_url) 29 29 if context.isStudent():
Note: See TracChangeset for help on using the changeset viewer.