source: main/waeup.kofa/branches/uli-zc-async/src/waeup/kofa/students/browser_templates/studyleveleditpage.pt @ 10009

Last change on this file since 10009 was 9211, checked in by uli, 12 years ago

Rollback r9209. Looks like multiple merges from trunk confuse svn when merging back into trunk.

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