source: main/waeup.ikoba/trunk/src/waeup/ikoba/customers/browser_templates/contracteditpage.pt @ 12692

Last change on this file since 12692 was 12593, checked in by Henrik Bettermann, 10 years ago

Add 'T&C acceptance' confirmation box.

File size: 936 bytes
Line 
1<form action="." tal:attributes="action request/URL" method="post"
2      i18n:domain="waeup.ikoba" enctype="multipart/form-data">
3
4  <br />
5  <table class="form-table">
6    <tbody>
7      <tal:widgets content="structure provider:widgets" />
8    </tbody>
9  </table>
10
11  <br />
12
13  <tal:tc condition="python: view.terms_and_conditions and view.__name__ == 'edit'">
14    <h4 i18n:domain="waeup.ikoba">
15      <span i18n:translate="">Terms and Conditions</span>
16    </h4>
17    <tal:tc content="structure view/terms_and_conditions" />
18    <br />
19    <input id="confirm_tc" name="confirm_tc" type="checkbox" value="True"/>
20    <span i18n:translate="">
21        I confirm that I have read, understood and accepted the Terms & Conditions.
22    </span>
23   <br /><br />
24  </tal:tc>
25
26  <div tal:condition="view/availableActions">
27    <input tal:repeat="action view/actions"
28           tal:replace="structure action/render"
29           />
30  </div>
31
32</form>
Note: See TracBrowser for help on using the repository browser.