source: main/waeup.ikoba/branches/uli-payments/src/waeup/ikoba/customers/browser_templates/selectpaymentmethodpage.pt @ 12690

Last change on this file since 12690 was 12689, checked in by uli, 10 years ago

Disply avail. gateway providers on select page.

File size: 859 bytes
Line 
1<form action="." tal:attributes="action request/URL" method="post"
2      i18n:domain="waeup.ikoba" enctype="multipart/form-data">
3
4  <div class="form-group">
5
6    <div class="radio" tal:repeat="service view/payment_gateways">
7      <label>
8        <input type="radio" name="gw" tal:attributes="value service/name" />
9        <b><span tal:replace="service/title" /></b>
10      </label>
11    </div>
12
13  </div>
14
15  <table class="form-table">
16    <tbody>
17      <tr>
18        <td class="fieldname" i18n:translate=""></td>
19        <td>
20        </td>
21      </tr>
22      <tr>
23        <td class="fieldname" i18n:translate=""></td>
24        <td>
25
26        </td>
27      </tr>
28    </tbody>
29  </table>
30  <br />
31
32  <div tal:condition="view/availableActions">
33    <input tal:repeat="action view/actions"
34           tal:replace="structure action/render"
35           />
36  </div>
37</form>
Note: See TracBrowser for help on using the repository browser.