source: main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/studylevelpage.pt

Last change on this file was 17331, checked in by Henrik Bettermann, 22 months ago

Enable localization.

File size: 2.1 KB
RevLine 
[7811]1<table class="form-table" i18n:domain="waeup.kofa">
[7738]2  <tbody>
3    <tal:block repeat="widget view/widgets">
4      <tr>
5        <td class="fieldname">
6          <span tal:content="widget/label">label</span>:
7        </td>
8        <td tal:on-error="default">
[7876]9          <div tal:content="structure widget">
[7738]10            <input type="text" />
11          </div>
12        </td>
13      </tr>
14    </tal:block>
15  </tbody>
[6783]16</table>
17
[7811]18<h3 i18n:domain="waeup.kofa" i18n:translate="">Course Tickets</h3>
[6783]19
[11254]20<table class="kofa-data-table dataTable" i18n:domain="waeup.kofa">
[6783]21  <thead>
22    <tr>
[10436]23      <th i18n:translate="">Term</th>
[7738]24      <th i18n:translate="">Code</th>
25      <th i18n:translate="">Title</th>
[8920]26      <th i18n:translate="">Dep.</th>
27      <th i18n:translate="">Fac.</th>
[7738]28      <th i18n:translate="">Cred.</th>
[9320]29      <th i18n:translate="">Requ.</th>
[7738]30      <th i18n:translate="">Score</th>
[9810]31      <th i18n:translate="">Grade</th>
[7738]32      <th i18n:translate="">CO</th>
[14575]33      <th i18n:translate="">OS</th>
[7738]34      <th i18n:translate="">Auto</th>
[6783]35    </tr>
36  </thead>
37  <tbody>
[11254]38    <tr tal:repeat="value view/translated_values">
[10440]39      <td tal:content="value/semester" nowrap>TERM</td>
[11254]40      <td> <a tal:attributes="href value/url">
[6783]41      <span tal:content="value/code">CODE</span>
42      </a></td>
43      <td tal:content="value/title">TITLE</td>
[7549]44      <td tal:content="value/dcode">DEPARTMENT</td>
45      <td tal:content="value/fcode">FACULTY</td>
[6783]46      <td tal:content="value/credits">CREDITS</td>
[7665]47      <td tal:content="value/mandatory">MANDATORY</td>
[8141]48      <td tal:content="value/score|nothing">SCORE</td>
[9810]49      <td tal:content="value/grade|nothing">GRADE</td>
[7663]50      <td tal:content="value/carry_over">CO</td>
[14575]51      <td tal:content="value/outstanding">OS</td>
[6806]52      <td tal:content="value/automatic">AUTO</td>
[6783]53    </tr>
54  </tbody>
55</table>
56
[17331]57<p i18n:domain="waeup.kofa"
58   i18n:translate="course_types">
[14575]59  CO: Carry-over course<br />
60  OS: Outstanding course<br />
61  Requ.: Required course<br />
62  Auto: Automatically created course ticket
63</p>
64
[7811]65<div i18n:domain="waeup.kofa"
[7738]66  tal:condition="python: not len(context.keys())" i18n:translate="">
[7741]67  The're no tickets added yet.
[6783]68</div>
Note: See TracBrowser for help on using the repository browser.