Changeset 15354 for main/waeup.uniben/trunk/src
- Timestamp:
- 18 Mar 2019, 09:24:33 (6 years ago)
- Location:
- main/waeup.uniben/trunk/src/waeup/uniben/students
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/students/utils.py
r15342 r15354 125 125 bt = 're' 126 126 special_handling = 'regular' 127 if student.faccode in ('MED', 'DEN'): 127 desired_hostel = student['accommodation'].desired_hostel 128 if student.faccode in ('MED', 'DEN') and ( 129 not desired_hostel or desired_hostel.startswith('clinical')): 128 130 special_handling = 'clinical' 129 131 elif student.certcode in ('BARTMAS', 'BARTTHR', 'BARTFAA', -
main/waeup.uniben/trunk/src/waeup/uniben/students/viewlets.py
r15352 r15354 122 122 @property 123 123 def target_url(self): 124 # temporarily disabled 125 return '' 124 126 return self.view.url(self.view.context, self.target) 125 127
Note: See TracChangeset for help on using the changeset viewer.