Changeset 997 for WAeUP_SRP/trunk/skins


Ignore:
Timestamp:
6 Dec 2006, 07:36:54 (18 years ago)
Author:
Henrik Bettermann
Message:

upper was missing

File:
1 edited

Legend:

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

    r993 r997  
    4848elif psm == 'valid':
    4949    s_id = ds.get('s_id')
     50    if is_anon and not s_id:
     51        return context.check_admission_pin_form(rendered = res,
     52                                 psm = "You are not allowed to call this form in this context. Please try to log in.",
     53                                 #psm = "%s, %s" % (psm,ds),
     54                                 firstlayout = True,
     55                                 lastlayout = True,
     56                                 ds = ds,
     57                                 )
     58    elif not is_anon:
     59        return context.check_admission_pin_form(rendered = res,
     60                                 psm = "You are already logged in!",
     61                                 #psm = "%s, %s" % (psm,ds),
     62                                 firstlayout = True,
     63                                 lastlayout = True,
     64                                 ds = ds,
     65                                 )
    5066## 
    5167##    email = ds.get('app_email')
     
    6480    url = "%s/logged_in?%s" % (context.absolute_url(),urlencode(args))
    6581    return redirect(url)
     82
Note: See TracChangeset for help on using the changeset viewer.