Ignore:
Timestamp:
15 Feb 2007, 20:59:20 (18 years ago)
Author:
Henrik Bettermann
Message:

jamb_reg_no added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/trunk/skins/waeup_accommodation/book_reserved_bed.py

    r1412 r1426  
    1313acco_cat = context.portal_accommodation
    1414import logging
    15 logger = logging.getLogger('Accommodation')
     15logger = logging.getLogger('Accommodation.BookReservedBed')
    1616
    1717mode = 'create'
    1818validate = REQUEST.has_key("cpsdocument_edit_button") and\
    19            REQUEST.get("cpsdocument_edit_button").startswith('reserve')
     19           REQUEST.get("cpsdocument_edit_button").startswith('Reserve')
    2020d = {}
    2121rendered,psm,ds = lt.renderLayout(layout_id= 'acco_bed_booking',
     
    3434                                 mode = mode,
    3535                                 formaction = "book_reserved_bed",
    36                                  button = "reserve bed",
     36                                 button = "Reserve Bed",
    3737                                 ds = ds,
    3838                                 )
     
    4242                                 mode = mode,
    4343                                 formaction = "book_reserved_bed",
    44                                  button = "reserve bed",
     44                                 button = "Reserve Bed",
    4545                                 ds = ds,
    4646                                 )
     
    6363        break
    6464    bed_brain = res[0]
    65     already = acco_cat(student=sid) 
     65    already = acco_cat(student=sid)
    6666    if already:
    6767        psm = "Student %s already reserved bed %s" % (sid, already[0].bed)
     
    8383                                 ds = ds,
    8484                                 formaction = "book_reserved_bed",
    85                                  button = "reserve bed",
     85                                 button = "Reserve Bed",
    8686                                 )
    8787acco_cat.modifyRecord(bed = bid, student = sid)
     
    9191                                 mode = mode,
    9292                                 formaction = "book_reserved_bed",
    93                                  button = "next reservation",
     93                                 button = "Next Reservation",
    9494                                 ds = ds,
    9595                                 )
Note: See TracChangeset for help on using the changeset viewer.