source: main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/courseticketmanagepage.pt @ 17182

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

Show weight and grade on course ticket manage page.

File size: 876 bytes
Line 
1<form action="." tal:attributes="action request/URL" method="post"
2      enctype="multipart/form-data">
3
4  <table class="form-table">
5    <tbody>
6      <tal:widgets content="structure provider:widgets" />
7
8      <tr tal:condition="context/grade">
9        <td class="fieldname">
10          <span i18n:translate="">Grade</span>:
11        </td>
12        <td>
13          <span tal:replace="context/grade">C</span>
14        </td>
15      </tr>
16      <tr tal:condition="python: context.weight is not None">
17        <td class="fieldname">
18          <span i18n:translate="">Weight</span>:
19        </td>
20        <td>
21          <span tal:replace="context/weight">1</span>
22        </td>
23      </tr>
24
25    </tbody>
26  </table>
27  <div tal:condition="view/availableActions">
28    <input tal:repeat="action view/actions"
29           tal:replace="structure action/render"
30           />
31  </div>
32</form>
Note: See TracBrowser for help on using the repository browser.