Ignore:
Timestamp:
10 Nov 2005, 21:40:01 (19 years ago)
Author:
joachim
Message:

=clearence + eligibility added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • waeup_product/trunk/skins/waeup_student/check_admission.py

    r155 r164  
    1717
    1818res,psm,ds = lt.renderLayout(layout_id= 'admission',
    19                       schema_id= 'jamb',
     19                      schema_id= 'student_admission',
    2020                      context=context,
    2121                      mapping=validate and REQUEST,
     
    3737    catalog = context.portal_catalog
    3838    search = catalog(SearchableText = "%s*" % s_id)
    39     if len(search) < 1:
    40         psm = "Your not admitted"
     39    student = getattr(context,s_id,None)
     40    if student is None:
     41    #if len(search) < 1:
     42        psm = "Your are not admitted"
    4143        return context.check_admission_form(rendered = res,
    42                                  psm = psm + str(search),
     44                                 psm = psm,
    4345                                 ds = ds,
    4446                                 )
    45     sf = getattr(context,s_id,None)
    46     if sf and getattr(sf,'PERSONAL',None):
    47         psm = "Your already admitted, please login"
    48         return context.check_admission_form(rendered = res,
    49                                  psm = psm,
    50                                  ds = ds,
    51                                  )
    52     rset = REQUEST.set
    53     sc_pin =  ds.get('sc_pin')
    54     return REQUEST.RESPONSE.redirect("%s/logged_in?__ac_name=%s&__ac_password=UnSeT&sc_pin=%s"
    55                                     % (context.absolute_url(),s_id,sc_pin))
    56 ##    return context.student_admitted_form(rendered = res,
    57 ##                                 psm = psm,
    58 ##                                 ds = ds,
    59 ##                                 student = student,
    60 ##                                 jamb = jamb,
    61 ##                                 pd = pd,
    62 ##                                 )
    63 ##   
    64 ##return res,psm,ds
     47student.getContent().setScratchCardData('adm_check',ds)
    6548
     49jamb = getattr(student,'JAMB')
     50res = jamb.getContent().render(layout_id = 'admission_slip',
     51                               layout_mode = 'view',
     52                               schema_id = 'jamb')
     53
     54return jamb.admission_slip_form(rendered = res, dict = ds)
     55
Note: See TracChangeset for help on using the changeset viewer.