Changeset 1360


Ignore:
Timestamp:
26 Jan 2007, 10:21:40 (18 years ago)
Author:
Henrik Bettermann
Message:

avoid key errors

Location:
WAeUP_SRP/trunk/skins/waeup_student
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/trunk/skins/waeup_student/inter_faculty_transfer_1.pt

    r1353 r1360  
    44
    55             
    6     <span tal:condition="python: not info or not info['paid']">
     6    <span tal:condition="python: not info or not info.get('paid',False)">
    77        <metal:block use-macro="here/error_not_found/macros/not_found" />
    88    </span>       
  • WAeUP_SRP/trunk/skins/waeup_student/inter_faculty_transfer_2.pt

    r1338 r1360  
    33              tal:define="info context/getTransferInfo">
    44
    5     <span tal:condition="python: not info or not info['paid']">
     5    <span tal:condition="python: not info or not info.get('paid',False)">
    66        <metal:block use-macro="here/error_not_found/macros/not_found" />
    77    </span>               
    8     <span tal:condition="python: info['paid']">                 
    9 
     8    <span tal:condition="info/paid|nothing">                 
    109    <center><font color="red"><span tal:content="info/pin"/></font></center>
    1110    <br />
    12    
    1311    <strong>SECTION B:</strong> To be completed by the Dean of the Present Faculty/School in Consultation with the Head of Department (if applicable).
    14    
    1512    <br /><br />
    16    
    1713    <table border=0 width=100%>
    1814   
  • WAeUP_SRP/trunk/skins/waeup_student/inter_faculty_transfer_3.pt

    r1338 r1360  
    33              tal:define="info context/getTransferInfo">
    44
    5     <span tal:condition="python: not info or not info['paid']">
     5    <span tal:condition="python: not info or not info.get('paid',False)">
    66        <metal:block use-macro="here/error_not_found/macros/not_found" />
    77    </span>               
    8     <span tal:condition="python: info['paid']">                 
    9 
     8    <span tal:condition="info/paid|nothing">                 
    109    <center><font color="red"><span tal:content="info/pin"/></font></center>
    1110    <br />
    12    
    1311    <strong>SECTION C:</strong> To be completed by the Dean of the Proposed Faculty/School in consultation with the Head of Department Concerned (if applicable).
    14    
    1512    <br /><br />
    16    
    1713    <table border=0 width=100%>
    1814   
  • WAeUP_SRP/trunk/skins/waeup_student/intra_faculty_transfer_1.pt

    r1354 r1360  
    44
    55             
    6     <span tal:condition="python: not info or not info.get('paid',None)">
     6    <span tal:condition="python: not info or not info.get('paid',False)">
    77        <metal:block use-macro="here/error_not_found/macros/not_found" />
    88    </span>       
  • WAeUP_SRP/trunk/skins/waeup_student/intra_faculty_transfer_2.pt

    r1338 r1360  
    33              tal:define="info context/getTransferInfo">
    44
    5     <span tal:condition="python: not info or not info['paid']">
     5    <span tal:condition="python: not info or not info.get('paid',False)">
    66        <metal:block use-macro="here/error_not_found/macros/not_found" />
    77    </span>               
    8     <span tal:condition="python: info['paid']">                 
    9 
     8    <span tal:condition="info/paid|nothing">                 
    109    <center><font color="red"><span tal:content="info/pin"/></font></center>
    1110    <br />
    12    
    1311    <strong>SECTION B:</strong> To be completed by the Heads of Department concerned and the Dean.
    14    
    1512    <br /><br />
    16    
    1713    <table border=0 width=100%>
    1814   
  • WAeUP_SRP/trunk/skins/waeup_student/intra_faculty_transfer_3.pt

    r1338 r1360  
    33              tal:define="info context/getTransferInfo">
    44
    5     <span tal:condition="python: not info or not info['paid']">
     5    <span tal:condition="python: not info or not info.get('paid',False)">
    66        <metal:block use-macro="here/error_not_found/macros/not_found" />
    77    </span>               
    8     <span tal:condition="python: info['paid']">                 
    9 
     8    <span tal:condition="info/paid|nothing">               
    109    <center><font color="red"><span tal:content="info/pin"/></font></center>
    1110    <br />
    12    
    13 
    14    
    1511    <strong>SECTION D:</strong> Decision(s) taken by the Central Committee
    16    
    1712    <br /><br />
    18    
    1913    <table border=0 width=100%>
    2014    <tr><td width="10px" valign="top"></td><td valign="top" style="border-bottom-style:dotted; border-bottom-width:1px; border-bottom-color:black">
Note: See TracChangeset for help on using the changeset viewer.