source: main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser_templates/balancepaymentaddform.pt

Last change on this file was 17016, checked in by Henrik Bettermann, 2 years ago

Add BalancePaymentAddFormPage which can only be opened by managers.
No button is provided in base package.

File size: 1.0 KB
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      <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.