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

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

Do not store faculty and department titles in each course ticket.

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