source: main/waeup.sirp/branches/henrik-bootstrap/src/waeup/sirp/students/browser_templates/studylevelpage.pt @ 7449

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

Backup

File size: 1.6 KB
Line 
1<h2 tal:content="view/label">TITLE</h2>
2
3<table class="form-table">
4<thead>
5</thead>
6<tbody>
7  <tal:block repeat="widget view/widgets">
8    <tr>
9      <td class="fieldname">
10        <span i18n:translate="" tal:content="widget/label">label</span>:
11      </td>
12      <td tal:on-error="default">
13        <div class="widget" tal:content="structure widget">
14          <input type="text" />
15        </div>
16      </td>
17    </tr>
18  </tal:block>
19  <tr>
20    <td>
21      Total Credits:
22    </td>
23    <td>
24      <span tal:replace="view/total_credits">TOTAL</span>
25    </td>
26  </tr>
27</tbody>
28</table>
29
30<h3>Course Tickets</h3>
31
32<table class="display dataTable">
33  <thead>
34    <tr>
35      <th>Semester</th>
36      <th>Code</th>
37      <th>Title</th>
38      <th>Department</th>
39      <th>Faculty</th>
40      <th>Credits</th>
41      <th>Mandatory</th>
42      <th>Score</th>
43      <th>Auto</th>
44    </tr>
45  </thead>
46  <tbody>
47    <tr tal:repeat="value context/values" class="gradeC">
48      <td tal:content="value/semester">SEMESTER</td>
49      <td> <a tal:attributes="href value/__name__">
50      <span tal:content="value/code">CODE</span>
51      </a></td>
52      <td tal:content="value/title">TITLE</td>
53      <td tal:content="value/department">DEPARTMENT</td>
54      <td tal:content="value/faculty">FACULTY</td>
55      <td tal:content="value/credits">CREDITS</td>
56      <td tal:content="value/core_or_elective">MANDATORY</td>
57      <td tal:content="value/score">SCORE</td>
58      <td tal:content="value/automatic">AUTO</td>
59    </tr>
60  </tbody>
61</table>
62
63
64<div tal:condition="python: not len(context.keys())">
65There no levels registered yet.
66</div>
Note: See TracBrowser for help on using the repository browser.