source: main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/previouspaymentaddform.pt

Last change on this file was 17628, checked in by Henrik Bettermann, 11 months ago

There are no files to be uploaded on this page.

File size: 994 bytes
Line 
1<form action="." tal:attributes="action request/URL" method="post"
2      enctype="multipart/form-data" i18n:domain="waeup.kofa">
3
4  <table class="form-table">
5    <tbody>
6      <tal:widgets content="structure provider:widgets" />
7      <tr tal:condition="view/selectable_payment_options">
8        <td i18n:translate="" class="fieldname">
9          Payment Option:
10        </td>
11        <td>
12          <select id="form.p_option" name="form.p_option" size="1"
13                  class="form-control half" onclick="further()">
14            <option tal:repeat="item view/selectable_payment_options"
15                    tal:attributes="value python:item[0]">
16              <span tal:replace="python:item[1]">PAYMENT OPTION</span>
17            </option>
18          </select>
19        </td>
20      </tr>
21    </tbody>
22  </table>
23  <br />
24  <div tal:condition="view/availableActions">
25    <input tal:repeat="action view/actions"
26           tal:replace="structure action/render"
27           />
28  </div>
29</form>
Note: See TracBrowser for help on using the repository browser.