1 | <form action="." tal:attributes="action request/URL" method="post" |
---|
2 | i18n:domain="waeup.kofa" enctype="multipart/form-data" |
---|
3 | autocomplete="off"> |
---|
4 | |
---|
5 | <ul class="tabs" data-tabs="tabs"> |
---|
6 | <li tal:attributes="class view/tab1"><a href="#tab-1"> |
---|
7 | <span i18n:translate="">Base Data</span></a></li> |
---|
8 | <li tal:attributes="class view/tab2"><a href="#tab-2"> |
---|
9 | <span i18n:translate="">Passport Picture</span></a></li> |
---|
10 | </ul> |
---|
11 | |
---|
12 | <div class="tab-content"> |
---|
13 | <div id="tab-1" tal:attributes="class view/tab1"> |
---|
14 | <table class="form-table"> |
---|
15 | <tbody> |
---|
16 | <tal:widgets content="structure provider:widgets" /> |
---|
17 | <tr> |
---|
18 | <td class="fieldname" i18n:translate="">Password:</td> |
---|
19 | <td> |
---|
20 | <input name="password" type="password" /> |
---|
21 | </td> |
---|
22 | </tr> |
---|
23 | <tr> |
---|
24 | <td class="fieldname" i18n:translate="">Retype Password:</td> |
---|
25 | <td> |
---|
26 | <input name="control_password" type="password" /> |
---|
27 | </td> |
---|
28 | </tr> |
---|
29 | <tr> |
---|
30 | <td class="fieldname" i18n:translate="">Registration Transition:</td> |
---|
31 | <td> |
---|
32 | <select id="transition" name="transition"> |
---|
33 | <option tal:repeat="transition view/getTransitions" |
---|
34 | tal:attributes="value transition/name"> |
---|
35 | <span tal:replace="transition/title">TRANSITIONTITLE</span> |
---|
36 | </option> |
---|
37 | </select> |
---|
38 | </td> |
---|
39 | </tr> |
---|
40 | |
---|
41 | </tbody> |
---|
42 | </table> |
---|
43 | |
---|
44 | <div tal:condition="view/availableActions"> |
---|
45 | <input tal:repeat="action view/actions" |
---|
46 | tal:replace="structure action/render" |
---|
47 | /> |
---|
48 | </div> |
---|
49 | </div> |
---|
50 | |
---|
51 | <div id="tab-2" tal:attributes="class view/tab2"> |
---|
52 | <table class="form-table"> |
---|
53 | <tbody> |
---|
54 | <tal:files content="structure provider:files" /> |
---|
55 | </tbody> |
---|
56 | </table> |
---|
57 | </div> |
---|
58 | </div> |
---|
59 | </form> |
---|