source: main/waeup.ikoba/trunk/src/waeup/ikoba/customers/browser_templates/documenteditpage.pt @ 12023

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

Add more browser components for document editing. Editing is allowed only under certain conditions.

  • work in progress -
File size: 1.1 KB
Line 
1<form action="." tal:attributes="action request/URL" method="post"
2      i18n:domain="waeup.ikoba" enctype="multipart/form-data">
3
4  <ul class="tabs nav nav-tabs" data-tabs="tabs">
5    <li class="active">
6      <a href="#tab1" data-toggle="tab">
7        <span i18n:translate="">Metadata</span>
8      </a>
9    </li>
10    <li>
11      <a href="#tab2" data-toggle="tab">
12        <span i18n:translate="">Scans</span>
13      </a>
14    </li>
15  </ul>
16  <div class="tab-content">
17    <div id="tab1" class="active tab-pane">
18      <br />
19      <table class="form-table">
20        <tbody>
21          <tal:widgets content="structure provider:widgets" />
22        </tbody>
23      </table>
24
25      <div tal:condition="view/availableActions">
26        <input tal:repeat="action view/actions"
27               tal:replace="structure action/render"
28               />
29      </div>
30    </div>
31
32    <div id="tab2" class="tab-pane">
33      <br />
34      <table class="form-table">
35        <tbody>
36          <tal:files content="structure provider:files" />
37        </tbody>
38      </table>
39    </div>
40  </div>
41</form>
Note: See TracBrowser for help on using the repository browser.