Changeset 13434 for main/waeup.kofa/trunk/src/waeup/kofa
- Timestamp:
- 11 Nov 2015, 07:54:44 (9 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/browser/pages.py
r13431 r13434 1877 1877 self.context.logger.info('%s - maintmode disabled' % ob_class) 1878 1878 self.flash(_('Maintenance mode disabled.')) 1879 self.redirect(self.url(self.context)) 1879 1880 else: 1880 1881 grok.getSite()['configuration'].maintmode_enabled_by = unicode( … … 1882 1883 self.context.logger.info('%s - maintmode enabled' % ob_class) 1883 1884 self.flash(_('Maintenance mode enabled.'), type='warning') 1884 self.redirect(self.url(self.context, 'import1'))1885 self.redirect(self.url(self.context, 'import1')) 1885 1886 return 1886 1887 -
main/waeup.kofa/trunk/src/waeup/kofa/browser/viewlets.py
r13431 r13434 631 631 grok.context(IDataCenter) 632 632 grok.require('waeup.importData') 633 grok.view(DatacenterImportStep1)633 #grok.view(DatacenterImportStep1) 634 634 grok.order(7) 635 635 icon = 'actionicon_stop.png' -
main/waeup.kofa/trunk/src/waeup/kofa/hostels/batching.py
r13432 r13434 82 82 83 83 class BedProcessor(BatchProcessor): 84 """The Bed Procesor update beds. It does allocate students 85 to empty beds and switches the reservation status of beds. 84 """The Bed Procesor update beds. It allocates students 85 to empty beds and switches the reservation status of beds. ``1`` 86 means reserved and ``0`` unreserved. Beds cannot be released 87 by import. 86 88 """ 87 89 grok.implements(IBatchProcessor)
Note: See TracChangeset for help on using the changeset viewer.