Ignore:
Timestamp:
23 Feb 2017, 14:14:20 (8 years ago)
Author:
Henrik Bettermann
Message:

Add OS column (outstanding) on display, edit and manage page.

Location:
main/waeup.kofa/trunk/src/waeup/kofa/students
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/students/browser.py

    r14314 r14575  
    130130        value_dict['carry_over'] = translate(str(value.carry_over), 'zope',
    131131            target_language=lang)
     132        value_dict['outstanding'] = translate(str(value.outstanding), 'zope',
     133            target_language=lang)
    132134        value_dict['automatic'] = translate(str(value.automatic), 'zope',
    133135            target_language=lang)
  • main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/studyleveleditpage.pt

    r12473 r14575  
    2020      <th i18n:translate="">Score</th>
    2121      <th i18n:translate="">CO</th>
     22      <th i18n:translate="">OS</th>
    2223    </tr>
    2324  </thead>
     
    3940      <td tal:content="value/score|nothing">SCORE</td>
    4041      <td tal:content="value/carry_over">CO</td>
     42      <td tal:content="value/outstanding">OS</td>
    4143    </tr>
    4244  </tbody>
  • main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/studylevelmanagepage.pt

    r11254 r14575  
    4747            <th i18n:translate="">Score</th>
    4848            <th i18n:translate="">CO</th>
     49            <th i18n:translate="">OS</th>
    4950            <th i18n:translate="">Auto</th>
    5051          </tr>
     
    6768            <td tal:content="value/score|nothing">SCORE</td>
    6869            <td tal:content="value/carry_over">CO</td>
     70            <td tal:content="value/outstanding">OS</td>
    6971            <td tal:content="value/automatic">AUTO</td>
    7072          </tr>
  • main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/studylevelpage.pt

    r11254 r14575  
    3131      <th i18n:translate="">Grade</th>
    3232      <th i18n:translate="">CO</th>
     33      <th i18n:translate="">OS</th>
    3334      <th i18n:translate="">Auto</th>
    3435    </tr>
     
    4849      <td tal:content="value/grade|nothing">GRADE</td>
    4950      <td tal:content="value/carry_over">CO</td>
     51      <td tal:content="value/outstanding">OS</td>
    5052      <td tal:content="value/automatic">AUTO</td>
    5153    </tr>
     
    5355</table>
    5456
     57<p i18n:translate="">
     58  CO: Carry-over course<br />
     59  OS: Outstanding course<br />
     60  Requ.: Required course<br />
     61  Auto: Automatically created course ticket
     62</p>
     63
    5564<div i18n:domain="waeup.kofa"
    5665  tal:condition="python: not len(context.keys())" i18n:translate="">
Note: See TracChangeset for help on using the changeset viewer.