source: main/waeup.ikoba/trunk/src/waeup/ikoba/customers/browser_templates/selectpaymentmethodpage.pt @ 17929

Last change on this file since 17929 was 12741, checked in by uli, 10 years ago

Merge changes from uli-payments back into trunk.

File size: 586 bytes
Line 
1
2<form action="." tal:attributes="action request/URL" method="post"
3      i18n:domain="waeup.ikoba" enctype="multipart/form-data">
4
5  <div class="form-group">
6
7    <div class="radio" tal:repeat="service view/payment_gateways">
8      <label>
9        <input type="radio" name="gw" tal:attributes="value service/name" />
10        <b><span tal:replace="service/title" /></b>
11      </label>
12    </div>
13
14  </div>
15
16  <br />
17
18  <div tal:condition="view/availableActions">
19    <input tal:repeat="action view/actions"
20           tal:replace="structure action/render"
21           />
22  </div>
23</form>
Note: See TracBrowser for help on using the repository browser.