source: main/waeup.kofa/branches/uli-diazo-themed/src/waeup/kofa/students/browser_templates/studylevelpage.pt @ 11035

Last change on this file since 11035 was 11025, checked in by Henrik Bettermann, 11 years ago

Adjust reports and export pages.

File size: 1.9 KB
Line 
1<table class="form-table" i18n:domain="waeup.kofa">
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">
9          <div tal:content="structure widget">
10            <input type="text" />
11          </div>
12        </td>
13      </tr>
14    </tal:block>
15  </tbody>
16</table>
17
18<h3 i18n:domain="waeup.kofa" i18n:translate="">Course Tickets</h3>
19
20<div class="table-responsive">
21  <table class="dataTable" i18n:domain="waeup.kofa">
22    <thead>
23      <tr>
24        <th i18n:translate="">Term</th>
25        <th i18n:translate="">Code</th>
26        <th i18n:translate="">Title</th>
27        <th i18n:translate="">Dep.</th>
28        <th i18n:translate="">Fac.</th>
29        <th i18n:translate="">Cred.</th>
30        <th i18n:translate="">Requ.</th>
31        <th i18n:translate="">Score</th>
32        <th i18n:translate="">Grade</th>
33        <th i18n:translate="">CO</th>
34        <th i18n:translate="">Auto</th>
35      </tr>
36    </thead>
37    <tbody>
38      <tr tal:repeat="value view/translated_values">
39        <td tal:content="value/semester" nowrap>TERM</td>
40        <td> <a tal:attributes="href value/url">
41        <span tal:content="value/code">CODE</span>
42        </a></td>
43        <td tal:content="value/title">TITLE</td>
44        <td tal:content="value/dcode">DEPARTMENT</td>
45        <td tal:content="value/fcode">FACULTY</td>
46        <td tal:content="value/credits">CREDITS</td>
47        <td tal:content="value/mandatory">MANDATORY</td>
48        <td tal:content="value/score|nothing">SCORE</td>
49        <td tal:content="value/grade|nothing">GRADE</td>
50        <td tal:content="value/carry_over">CO</td>
51        <td tal:content="value/automatic">AUTO</td>
52      </tr>
53    </tbody>
54  </table>
55</div>
56
57
58<div i18n:domain="waeup.kofa"
59  tal:condition="python: not len(context.keys())" i18n:translate="">
60  The're no tickets added yet.
61</div>
Note: See TracBrowser for help on using the repository browser.