[7705] | 1 | <form action="." tal:attributes="action request/URL" method="POST"
|
---|
| 2 | enctype="multipart/form-data" i18n:domain="waeup.sirp">
|
---|
[7459] | 3 | <ul class="tabs" data-tabs="tabs">
|
---|
[7484] | 4 | <li tal:attributes="class view/tab1">
|
---|
[7705] | 5 | <a href="#tab-1" i18n:translate="">Site Settings</a>
|
---|
[6916] | 6 | </li>
|
---|
[7484] | 7 | <li tal:attributes="class view/tab2">
|
---|
[7705] | 8 | <a href="#tab-2" i18n:translate="">Session Configurations</a>
|
---|
[6916] | 9 | </li>
|
---|
| 10 | </ul>
|
---|
[7459] | 11 | <div class="tab-content">
|
---|
[7484] | 12 | <div id="tab-1" tal:attributes="class view/tab1">
|
---|
[7459] | 13 | <table class="form-table">
|
---|
[6916] | 14 | <tbody>
|
---|
| 15 | <tal:block repeat="widget view/widgets">
|
---|
| 16 | <tr>
|
---|
[7459] | 17 | <td class="fieldname">
|
---|
| 18 | <span tal:condition="widget/required">*
|
---|
[6916] | 19 | </span>
|
---|
[7669] | 20 | <span tal:content="widget/label">label
|
---|
[6916] | 21 | </span>:
|
---|
[7459] | 22 | </td>
|
---|
| 23 | <td>
|
---|
| 24 | <span tal:content="structure widget">
|
---|
[6916] | 25 | <input type="text" />
|
---|
| 26 | </span>
|
---|
| 27 | <tal:error tal:condition="widget/error">
|
---|
| 28 | <span tal:replace="structure widget/error">error
|
---|
| 29 | </span>
|
---|
| 30 | </tal:error>
|
---|
| 31 | <tal:hint tal:condition="widget/hint">
|
---|
[7459] | 32 | <span tal:content="structure widget/hint">hint
|
---|
[6916] | 33 | </span>
|
---|
| 34 | </tal:hint> </td>
|
---|
| 35 | </tr>
|
---|
| 36 | </tal:block>
|
---|
| 37 | </tbody>
|
---|
| 38 | </table>
|
---|
[7459] | 39 | <div tal:condition="view/availableActions">
|
---|
[6916] | 40 | <span tal:repeat="action view/actions" tal:omit-tag="">
|
---|
[7459] | 41 | <input tal:condition="python:action.label in view.taboneactions"
|
---|
| 42 | tal:replace="structure action/render"/>
|
---|
[6916] | 43 | </span>
|
---|
| 44 | </div>
|
---|
| 45 | </div>
|
---|
[7484] | 46 | <div id="tab-2" tal:attributes="class view/tab2"> <br />
|
---|
[6916] | 47 | <table class="display dataTableManage">
|
---|
| 48 | <thead>
|
---|
| 49 | <tr>
|
---|
| 50 | <th>
|
---|
| 51 | </th>
|
---|
[7705] | 52 | <th i18n:translate="">Name
|
---|
[6916] | 53 | </th>
|
---|
| 54 | </tr>
|
---|
| 55 | </thead>
|
---|
| 56 | <tbody>
|
---|
[7459] | 57 | <tr tal:repeat="entry view/getSessionConfigurations" class="gradeC"> <td>
|
---|
[6916] | 58 | <input type="checkbox" name="val_id" tal:attributes="value entry/name" /> </td> <td>
|
---|
| 59 | <a href="" tal:attributes="href entry/url" tal:content="entry/title">Name</a> </td>
|
---|
| 60 | </tr>
|
---|
| 61 | </tbody>
|
---|
| 62 | </table>
|
---|
[7459] | 63 | <div tal:condition="view/availableActions">
|
---|
[6916] | 64 | <span tal:repeat="action view/actions" tal:omit-tag="">
|
---|
[7705] | 65 | <input tal:condition="python:action.label in view.tabtwoactions"
|
---|
| 66 | tal:replace="structure action/render"/>
|
---|
[6916] | 67 | </span>
|
---|
| 68 | </div>
|
---|
| 69 | </div>
|
---|
| 70 | </div>
|
---|
| 71 | </form> |
---|