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

Last change on this file since 16431 was 16431, checked in by Henrik Bettermann, 4 years ago

Add payment option (p_option) field to payment tickets and add
select box on online payment add form pages. Disable this feature
in the base package.

File size: 1006 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      <tr tal:condition="view/selectable_payment_options">
8        <td 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      <tal:files content="structure provider:files" />
22    </tbody>
23  </table>
24  <br />
25  <div tal:condition="view/availableActions">
26    <input tal:repeat="action view/actions"
27           tal:replace="structure action/render"
28           />
29  </div>
30</form>
Note: See TracBrowser for help on using the repository browser.