Ignore:
Timestamp:
2 Jan 2007, 07:17:06 (18 years ago)
Author:
Henrik Bettermann
Message:

displays registration status for returning students

File:
1 edited

Legend:

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

    r1072 r1172  
    22           info item/getStudentWorkflowInfo;"
    33           condition="context/isStudent">       
    4 <table class="registration" tal:condition="info|nothing">
     4
     5<table class="registration" tal:condition="python:info and info['review_state'] in ('application_pin_entered',
     6                                                                                     'admission_applied',
     7                                                                                     'pume_passed',
     8                                                                                     'pume_failed',
     9                                                                                     'admitted',
     10                                                                                     'admission_rejected',
     11                                                                                     'objection_raised',
     12                                                                                     'clearance_pin_entered',
     13                                                                                     'clearance_requested',
     14                                                                                     'cleared_and_validated',
     15                                                                                     'deferred',
     16                                                                                     )">
    517  <span tal:condition="python:path('info/review_state')=='application_pin_entered'">
    618  <tr><td class="active">
    7     <a href="" tal:attributes="href string:${info/url}/application_edit">
     19    <a href="" tal:attributes="href string:${info/url}/application_edit_form">
    820    Admission started
    921    </a>
     
    1527  </td></tr>
    1628  </span>
    17 
    1829  <span tal:condition="python:path('info/review_state')=='admission_applied'">
    1930  <tr><td class="active">
     
    2839  </td></tr>
    2940  </span>
    30 
    31 
    3241  <span tal:condition="python:path('info/review_state')=='pume_passed'">
    3342  <tr><td class="active">PUME passed</td></tr>
     
    3948  <tr><td>PUME passed</td></tr>
    4049  </span> 
    41 
    4250  <span tal:condition="python:path('info/review_state')=='admitted'">
    4351  <tr>
     
    6169  </tr>
    6270  </span> 
    63 
    6471  <span tal:condition="python:path('info/review_state')=='objection_raised'">
    6572  <tr>
     
    7481  <tr><td>Objection raised</td></tr>
    7582  </span> 
    76 
    7783  <span tal:condition="python:path('info/review_state')=='clearance_pin_entered'">
    7884  <tr>
     
    8793  <tr><td>Clearance started</td></tr>
    8894  </span>
    89  
    9095  <span tal:condition="python:path('info/review_state')=='clearance_requested'">
    9196  <tr><td class="active">Clearance requested</td></tr>
     
    9499  <tr><td>Clearance requested</td></tr>
    95100  </span>
    96 
    97101  <span tal:condition="python:path('info/review_state')=='cleared_and_validated'">
    98102  <tr><td class="active">Cleared</td></tr>
     
    101105  <tr><td>Cleared</td></tr>
    102106  </span>
    103  
    104107  <span tal:condition="python:path('info/review_state')=='deferred'">
    105108  <tr><td class="active">Admission deferred</td></tr>
     
    108111  <tr><td>Admission deferred</td></tr>
    109112  </span>   
     113</table>
    110114
     115<table class="registration" tal:condition="python:info and info['review_state'] in ('returning',
     116                                                                                    'school_fee_pin_entered',
     117                                                                                    'courses_registered',
     118                                                                                    'courses_validated',
     119                                                                                    )">
     120  <span tal:condition="python:info['review_state']=='returning'">
     121  <tr><td class="active">
     122    <a href="" tal:attributes="href string:${info/url}/personal_edit_form">
     123    Returning
     124    </a>
     125  </td></tr>
     126  </span>
     127  <span tal:condition="python:info['review_state']!='returning'">
     128  <tr><td>
     129    Returning
     130  </td></tr>
     131  </span>
     132  <span tal:condition="python:info['review_state']=='school_fee_pin_entered'">
     133  <tr><td class="active">
     134    <a href="" tal:attributes="href string:${info/url}/student_view">
     135    School fee paid
     136    </a>
     137  </td></tr>
     138  </span>
     139  <span tal:condition="python:info['review_state']!='school_fee_pin_entered'">
     140  <tr><td>
     141    School fee paid
     142  </td></tr>
     143  </span> 
     144  <span tal:condition="python:info['review_state']=='courses_registered'">
     145  <tr><td class="active">
     146    <a href="" tal:attributes="href string:${info/url}/student_view">
     147    Courses registered
     148    </a>
     149  </td></tr>
     150  </span>
     151  <span tal:condition="python:info['review_state']!='courses_registered'">
     152  <tr><td>
     153    Courses registered
     154  </td></tr>
     155  </span>   
     156  <span tal:condition="python:info['review_state']=='courses_validated'">
     157  <tr><td class="active">
     158    <a href="" tal:attributes="href string:${info/url}/student_view">
     159    Courses vaildated
     160    </a>
     161  </td></tr>
     162  </span>
     163  <span tal:condition="python:info['review_state']!='courses_validated'">
     164  <tr><td>
     165    Courses vaildated
     166  </td></tr>
     167  </span>     
    111168</table>
     169
    112170</tal:block>
    113171
Note: See TracChangeset for help on using the changeset viewer.