source: main/waeup.sirp/trunk/src/waeup/sirp/students/browser_templates/studyleveleditpage.pt @ 7797

Last change on this file since 7797 was 7738, checked in by Henrik Bettermann, 13 years ago

Finalize internationalization of py and pt files. Javascript is still missing.

File size: 1.6 KB
Line 
1<form action="." tal:attributes="action request/URL" method="POST"
2      i18n:domain="waeup.sirp" enctype="multipart/form-data">
3
4  <h3 i18n:translate="">
5    Course Tickets
6    (Total Credits: <span tal:replace="view/total_credits">TOTAL</span>)
7  </h3>
8  <table class="display dataTableManage">
9  <thead>
10    <tr>
11      <th>&nbsp;</th>
12      <th i18n:translate="">Sem.</th>
13      <th i18n:translate="">Code</th>
14      <th i18n:translate="">Title</th>
15      <th i18n:translate="">Department</th>
16      <th i18n:translate="">Faculty</th>
17      <th i18n:translate="">Credits</th>
18      <th i18n:translate="">Score</th>
19      <th i18n:translate="">CO</th>
20    </tr>
21  </thead>
22  <tbody>
23    <tr tal:repeat="value context/values" class="gradeC">
24       <td>
25        <input type="checkbox" name="val_id"
26                  tal:attributes="value value/__name__"
27        tal:condition="not: value/mandatory" />
28      </td>
29      <td tal:content="value/semester">SEMESTER</td>
30      <td> <a tal:attributes="href value/__name__">
31      <span tal:content="value/code">CODE</span>
32      </a></td>
33      <td tal:content="value/title">TITLE</td>
34      <td tal:content="value/dcode">DEPARTMENT</td>
35      <td tal:content="value/fcode">FACULTY</td>
36      <td tal:content="value/credits">CREDITS</td>
37      <td tal:content="value/score">SCORE</td>
38      <td tal:content="value/carry_over">CO</td>
39    </tr>
40  </tbody>
41  </table>
42
43  <div tal:condition="view/availableActions">
44    <span tal:repeat="action view/actions"
45          tal:omit-tag="">
46      <input tal:replace="structure action/render"/>
47    </span>
48  </div>
49
50</form> 
51
52
53
Note: See TracBrowser for help on using the repository browser.