Changeset 662 for WAeUP_SRP


Ignore:
Timestamp:
12 Oct 2006, 09:04:03 (18 years ago)
Author:
Henrik Bettermann
Message:

student's navigation modified

Location:
WAeUP_SRP/trunk/skins
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/trunk/skins/waeup_custom/custom.css.dtml

    r503 r662  
    1313}
    1414
    15 table.registration a {
    16   text-decoration: none;
    17   color: black;
     15table.registration td a {
     16  white-space: nowrap;
     17  color: gray;
     18}
     19
     20table.registration td a:visited {
     21  white-space: nowrap;
     22  color: gray;
     23}
     24
     25table.registration td a:hover {
     26  text-decoration: underline;
     27  white-space: nowrap;
     28}
     29
     30table.registration td.active a {
     31  white-space: nowrap; 
     32  color: #00C600;
     33}
     34
     35table.registration td.active a:visited {
     36  white-space: nowrap; 
     37  color: #00C600;
     38}
     39
     40table.registration td.active a:hover {
     41  text-decoration: underline;
     42  white-space: nowrap; 
    1843}
    1944
  • WAeUP_SRP/trunk/skins/waeup_student/getStudentInfo.py

    r659 r662  
    4343info['student'] = student
    4444info['id'] = student.getId()
     45info['url'] = student.absolute_url()
    4546info['student_doc'] = student.getContent()
    4647info['app'] = student.application
  • WAeUP_SRP/trunk/skins/waeup_student/portlet_student_workflow_display.pt

    r535 r662  
    1414 
    1515  <span tal:condition="python:path('info/review_state')=='application_pin_entered'">
    16   <tr><td class="active">Admission started</td></tr>
     16  <tr><td class="active">
     17    <a href="" tal:attributes="href string:${info/url}/passport_entry_view">
     18    Admission started
     19    </a>
     20  </td></tr>
    1721  </span>
    1822  <span tal:condition="python:path('info/review_state')!='application_pin_entered'">
    19   <tr><td>Admission started</td></tr>
     23  <tr><td>
     24    Admission started
     25  </td></tr>
    2026  </span>
    2127
    22 
    2328  <span tal:condition="python:path('info/review_state')=='admission_applied'">
    24   <tr><td class="active">Admission requested</td></tr>
     29  <tr><td class="active">
     30    <a href="" tal:attributes="href string:${info/url}/application_view">
     31    Admission requested
     32    </a>
     33  </td></tr>
    2534  </span>
    2635  <span tal:condition="python:path('info/review_state')!='admission_applied'">
    27   <tr><td>Admission requested</td></tr>
     36  <tr><td>
     37    Admission requested
     38  </td></tr>
    2839  </span>
    2940
     
    3546  <tr><td>PUME passed</td></tr>
    3647  </span> 
     48
     49  <span tal:condition="python:path('info/review_state')=='pume_failed'">
     50  <tr><td class="active">PUME failed</td></tr>
     51  </span>
     52  <span tal:condition="python:path('info/review_state')!='pume_failed'">
     53  <tr><td>PUME failed</td></tr>
     54  </span>   
    3755 
    3856  <span tal:condition="python:path('info/review_state')=='admitted'">
  • WAeUP_SRP/trunk/skins/waeup_student/student_view.pt

    r659 r662  
    4444            <td>
    4545            <a tal:condition="row/is_editable"
    46                 href="edit" tal:attributes="href string:${here/absolute_url}/passport_entry_view">
     46                href="edit" tal:attributes="href string:${info/url}/passport_entry_view">
    4747                [edit]
    4848            </a>
Note: See TracChangeset for help on using the changeset viewer.