Ignore:
Timestamp:
25 Oct 2012, 11:41:19 (12 years ago)
Author:
Henrik Bettermann
Message:

Do not allow that students can be removed from a bed by using the BedManageFormPage?.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/hostels/interfaces.py

    r9414 r9416  
    236236    owner = schema.TextLine(
    237237        title = _(u'Owner (Student)'),
     238        description = _('Enter valid student id.'),
    238239        required = True,
    239240        default = u'',
     
    251252        if not bed.owner in student_ids:
    252253            raise Invalid(_(
    253                 "Either student does not exist or is not in accommodation session."))
     254                "Either student does not exist or student "
     255                "is not in accommodation session."))
    254256        catalog = getUtility(ICatalog, name='beds_catalog')
    255257        beds = catalog.searchResults(owner=(bed.owner,bed.owner))
Note: See TracChangeset for help on using the changeset viewer.