source: main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/clearanceeditpage.pt @ 14709

Last change on this file since 14709 was 13104, checked in by Henrik Bettermann, 9 years ago

More docs.

File size: 1.1 KB
Line 
1<form action="." tal:attributes="action request/URL" method="post"
2      i18n:domain="waeup.kofa" 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="">Clearance Data</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      <br />
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.