source: main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/onlinepaymentaddform.pt @ 10549

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

We need to reduce selectable payment categories. Instead of defining another interface we render the select box manually.

File size: 783 bytes
Line 
1<form action="." tal:attributes="action request/URL" method="post"
2      enctype="multipart/form-data">
3  <table class="form-table">
4    <tbody>
5      <tr>
6        <td class="fieldname">
7          <span>Payment Category</span>:
8        </td>
9        <td>
10          <select id="form.p_category" name="form.p_category" size="1" >
11            <option tal:repeat="item view/selectable_categories"
12                    tal:attributes="value python:item[0]">
13              <span tal:replace="python:item[1]">FEE CATEGORY</span>
14            </option>
15          </select>
16        </td>
17      </tr>
18    </tbody>
19  </table>
20  <div tal:condition="view/availableActions">
21    <input tal:repeat="action view/actions"
22           tal:replace="structure action/render"
23           />
24  </div>
25</form>
Note: See TracBrowser for help on using the repository browser.