source: main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/certificatepage.pt @ 9193

Last change on this file since 9193 was 8920, checked in by Henrik Bettermann, 12 years ago

Rename course referrers to certificate courses (according to the discussion long time ago).

Edit some button labels and titles.

Move code from view to content components.

File size: 1.5 KB
Line 
1<table class="form-table">
2<thead>
3</thead>
4<tbody>
5  <tal:block repeat="widget view/widgets">
6    <tr>
7      <td class="fieldname">
8        <span tal:content="widget/label">label</span>:
9      </td>
10      <td tal:on-error="default">
11        <div tal:content="structure widget">
12          <input type="text" />
13        </div>
14      </td>
15    </tr>
16  </tal:block>
17</tbody>
18</table>
19
20<h3>
21  <span tal:content="context/__name__">Code</span>
22  <span i18n:domain="waeup.kofa" i18n:translate="">Courses</span>
23</h3>
24<br />
25<table i18n:domain="waeup.kofa" class="display dataTable">
26<thead>
27  <tr>
28    <th i18n:translate="">Level</th>
29    <th i18n:translate="">Semester</th>
30    <th i18n:translate="">Cert. Course</th>
31    <th i18n:translate="">Dep. Course</th>
32    <th i18n:translate="">Title</th>
33    <th i18n:translate="">Mandatory</th>
34  </tr>
35</thead>
36<tbody>
37  <tr tal:repeat="cc context/values" class="gradeC">
38     <td>
39      <span tal:content="cc/level">
40           LEVEL
41      </span>
42    </td>
43    <td tal:content="cc/course/semester">SEMESTER</td>
44    <td>
45      <a tal:attributes="href python: view.url(cc)"
46             tal:content="cc/__name__">
47        REFERRER CODE
48      </a>
49    </td>
50    <td>
51      <a tal:attributes="href python:view.url(cc.course)"
52             tal:content="cc/course/code">
53        COURSE CODE
54      </a>
55    <td>
56      <span tal:content="cc/course/title">
57           COURSE TITLE
58      </span>
59    </td>
60    <td>
61      <span tal:content="cc/mandatory">
62           MANDATORY
63      </span>
64    </td>
65  </tr>
66</tbody>
67</table>
68
Note: See TracBrowser for help on using the repository browser.