Ignore:
Timestamp:
28 Nov 2007, 08:53:45 (17 years ago)
Author:
Henrik Bettermann
Message:

show app number on forms

Location:
WAeUP_SRP/base/skins/waeup_student
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/base/skins/waeup_student/apply_admission.py

    r2743 r2802  
    3939headings['prence'] = 'Apply for Pre-NCE Programme (2007/2008)! '
    4040headings['pce'] = 'Apply for PCE Screening (2007/2008)! '
    41 headings['cest'] = 'Apply for Common Entrance Screening Test (2007/2008)! '
     41headings['cest'] = 'Apply for Part-Time Degree and Diploma Programmes (2007/2008)! '
    4242#headings['pt'] = 'Apply for Local/Part-Time Programmes (2007/2008)'
    4343
  • WAeUP_SRP/base/skins/waeup_student/apply_admission_form.pt

    r2743 r2802  
    77           expired info/expired;
    88           venue_display python:False;
    9            deadline info/deadline
     9           deadline info/deadline;
    1010           "
    1111           >
     
    6767          <metal:block tal:condition="venue_display">
    6868              <br />
    69                 <strong><a href="http://uniben.waeup.org/Post_UDE_Provisional_Venues.rtf">Post UDE Screening (2007/2008) - Provisional Venue</a></strong>
     69                <strong></strong>
    7070              <br />  <br /> 
    7171          </metal:block>
  • WAeUP_SRP/base/skins/waeup_student/apply_admission_manage_form.pt

    r2801 r2802  
    22           portal_status_message options/psm|nothing;
    33           reg_no options/reg_no|nothing;
    4            app_no options/app_no|nothing;
     4           serial options/ds/serial|nothing;
     5           ccode options/ds/course1|nothing;
     6           ccode python:ccode[:2];
     7           app_no string:${ccode}${serial}/07;
    58           ds options/ds|nothing;
     9           screening_type options/ds/screening_type;
     10           cest python: screening_type == 'cest';               
    611           "
    712           >   
     
    5459
    5560          <span tal:condition="rendered_main">
    56             <h3>Application Record <span tal:replace="reg_no"/> (<span tal:replace="app_no"/>)</h3>
     61            <h3>Application Record <span tal:replace="reg_no"/>
     62                <span tal:condition="python: cest and ccode" tal:replace="string:(${app_no})" />
     63            </h3>
    5764            <br />
    5865            <div tal:replace="structure rendered_main" />
  • WAeUP_SRP/base/skins/waeup_student/apply_admission_slip.pt

    r2493 r2802  
    66           name python:ds['lastname'];
    77           info options/info;
     8           serial options/ds/serial|nothing;
     9           ccode options/ds/course1|nothing;
     10           ccode python:ccode[:2];
     11           app_no string:${ccode}${serial}/07;
     12           screening_type options/ds/screening_type;
     13           cest python: screening_type == 'cest';   
    814           "
    915           >
     
    1319        <h3 tal:content="info/heading_slip" />
    1420        <br />
     21       
     22        <tal:block condition="python: cest and ccode">
     23       
     24        <table><tr><td>
     25        <strong>Application Number for the Screening Test: <span tal:replace="app_no" /></strong>
     26        </td></tr></table>
     27        <br />
     28        </tal:block>
     29       
    1530        <div tal:replace="structure rendered_main" />
    1631       
Note: See TracChangeset for help on using the changeset viewer.