source: main/waeup.sirp/trunk/src/waeup/sirp/browser/templates/certificatepage.pt @ 6461

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

Adjust form status summary throughout the portal. Do not display errors in status summary. These errors can be found the form too.

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