source: main/waeup.kofa/branches/uli-diazo-themed/src/waeup/kofa/students/browser_templates/clearanceeditpage.pt @ 11041

Last change on this file since 11041 was 11013, checked in by Henrik Bettermann, 11 years ago

First adjustments in students module.

File size: 1.0 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      <table class="form-table">
19        <tbody>
20          <tal:widgets content="structure provider:widgets" />
21        </tbody>
22      </table>
23
24      <div tal:condition="view/availableActions">
25        <input tal:repeat="action view/actions"
26               tal:replace="structure action/render"
27               />
28      </div>
29    </div>
30
31    <div id="tab2" class="tab-pane">
32      <table class="form-table">
33        <tbody>
34          <tal:files content="structure provider:files" />
35        </tbody>
36      </table>
37    </div>
38  </div>
39</form>
Note: See TracBrowser for help on using the repository browser.