Changeset 17458 for main/waeup.kofa
- Timestamp:
- 27 Jun 2023, 09:35:46 (17 months ago)
- Location:
- main/waeup.kofa/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/CHANGES.txt
r17412 r17458 4 4 1.8.2.dev0 (unreleased) 5 5 ======================= 6 7 * Don't led students selct blocked hostels on `AccommodationManageFormPage`. 6 8 7 9 * Add `ReleaseExpiredAllocationsPage2` which allows to release unpaid beds -
main/waeup.kofa/trunk/src/waeup/kofa/browser/pages.py
r17261 r17458 501 501 return 502 502 503 504 503 class LogoutPage(KofaPage): 505 504 """A logout page. Calling this page will log the current user out. … … 516 515 self.redirect(self.application_url() + '/index') 517 516 return 518 519 517 520 518 class LanguageChangePage(KofaPage): … … 2139 2137 pnav = 1 2140 2138 2141 2142 2139 class FacultiesContainerManageFormPage(KofaEditFormPage): 2143 2140 """Manage the basic properties of a `Faculty` instance. … … 2174 2171 self.redirect(self.url(self.context)) 2175 2172 return 2176 2177 2173 2178 2174 class FacultyAddFormPage(KofaAddFormPage): … … 2615 2611 2616 2612 class UpdateCourseTicketsView(UtilityView, grok.View): 2617 """U date course tickets.2613 """Update course tickets. 2618 2614 """ 2619 2615 grok.context(ICourse) … … 2711 2707 def delLocalRoles(self, **data): 2712 2708 return del_local_roles(self,3,**data) 2713 2714 2709 2715 2710 class CertificateCourseAddFormPage(KofaAddFormPage): -
main/waeup.kofa/trunk/src/waeup/kofa/students/browser.py
r17335 r17458 857 857 omit_fields=self.omit_fields) 858 858 859 860 859 class ExportPDFClearanceSlip(grok.View): 861 860 """Deliver a PDF slip of the context. … … 1084 1083 '/contactstudent?%s' % urlencode(args)) 1085 1084 return 1086 1087 1085 1088 1086 class StudentPersonalDisplayFormPage(KofaDisplayFormPage): … … 2589 2587 yield(dict(name='no', title=_('No favoured hostel'), selected=selected)) 2590 2588 for val in grok.getSite()['hostels'].values(): 2589 if val.special_handling == 'blocked': 2590 continue 2591 2591 selected = '' 2592 2592 if val.hostel_id == self.context.desired_hostel:
Note: See TracChangeset for help on using the changeset viewer.