Changeset 2374 for WAeUP_SRP/base


Ignore:
Timestamp:
17 Oct 2007, 19:36:22 (17 years ago)
Author:
Henrik Bettermann
Message:

implementation of recent requests (see ticket #360)

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

Legend:

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

    r2340 r2374  
    8686headings = {}
    8787headings['pume'] = 'Apply for Post UME Screening Test (2007/2008)! '
    88 headings['pde'] = 'Apply for Post DE Screening Test (2007/2008)! '
     88headings['pde'] = 'Apply for Post UDE Screening Test (2007/2008)! '
    8989headings['prence'] = 'Apply for Pre-NCE Programme (2007/2008)! '
    9090headings['pce'] = 'Apply for PCE Screening (2007/2008)! '
     
    9292headings_slip = {}
    9393headings_slip['pume'] = 'Post UME Screening (2007/2008) Aknowledgement Slip!'
    94 headings_slip['pde'] = 'Post DE Screening (2007/2008) Aknowledgement Slip'
     94headings_slip['pde'] = 'Post UDE Screening (2007/2008) Aknowledgement Slip'
    9595headings_slip['prence'] = 'Pre-NCE Application (2007/2008) Aknowledgement Slip'
    9696headings_slip['pce'] = 'PCE Screening (2007/2008) Aknowledgement Slip'
    9797headings_slip['cest'] = 'Common Entrance Screening (2007/2008) Aknowledgement Slip'
     98
     99deadline = {}
     100deadline['pume'] = '[Date of PUME Deadline]'
     101deadline['pde'] = '[Date of PUDE Deadline]'
     102deadline['prence'] = '[Date of PRENCE Deadline]'
     103deadline['pce'] = '[Date of PCE Deadline]'
     104deadline['cest'] = '[Date of CEST Deadline]'
     105
    98106info = {}
     107
    99108if traverse_subpath and traverse_subpath[0] in screening_types:
    100109    screening_type = info['screening_type'] = traverse_subpath[0]
    101110    info['heading'] = headings[screening_type]
    102111    info['heading_slip'] = headings_slip[screening_type]
     112    info['deadline'] = deadline[screening_type]
    103113    layout = "application_%s" % screening_type
    104114    without_reg_no = screening_type in ('prence',)
     
    111121    info['heading'] = headings[screening_type]
    112122    info['heading_slip'] = headings_slip[screening_type]
     123    info['deadline'] = deadline[screening_type]
    113124    layout = "application_%s" % screening_type
    114125    without_reg_no = screening_type in ('prence',)
  • WAeUP_SRP/base/skins/waeup_student/apply_admission_form.pt

    r2371 r2374  
    66           info options/info;
    77           expired python:not info['screening_type']=='pde';
     8           deadline info/deadline
    89           "
    910           >
     
    7172            </ul>
    7273            <br />
    73             <font color="red">Application submission deadline is at Midnight on Thursday, 6th September 2007
     74            <font color="red">Application submission deadline is at Midnight on <span tal:content="deadline" />
    7475            No application will be treated after the deadline. </font>
    7576          </metal:block>
  • WAeUP_SRP/base/skins/waeup_student/apply_admission_slip.pt

    r2328 r2374  
    1616       
    1717        The applicant has confirmed that the picture shown on this slip is a true picture of him/her.
    18 
     18        <br /><br />
     19        <font color="red">
     20        Notice: Please come back and check for the screening venue as from 30th October.
     21        </font>
    1922      </metal:block>
    2023    </metal:block>
Note: See TracChangeset for help on using the changeset viewer.