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

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

Export course registration slip on two pages.
Set columns width of each column.
Show semester on all course registration view.

ToDo?: Sort course tickets by semester on course registration slip.

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