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

Last change on this file since 9191 was 7811, checked in by uli, 13 years ago

Rename all non-locales stuff from sirp to kofa.

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" data-tabs="tabs">
5    <li tal:attributes="class view/tab1"><a href="#tab-1">
6    <span i18n:translate="">Clearance Data</span></a></li>
7    <li tal:attributes="class view/tab2"><a href="#tab-2">
8    <span i18n:translate="">Scans</span></a></li>
9  </ul>
10  <div class="tab-content">
11    <div id="tab-1" tal:attributes="class view/tab1">
12      <table class="form-table">
13        <tbody>
14          <tal:widgets content="structure provider:widgets" />
15        </tbody>
16      </table>
17
18      <div tal:condition="view/availableActions">
19        <input tal:repeat="action view/actions"
20               tal:replace="structure action/render"
21               />
22      </div>
23    </div>
24
25    <div id="tab-2" tal:attributes="class view/tab2">
26      <table class="form-table">
27        <tbody>
28          <tal:files content="structure provider:files" />
29        </tbody>
30      </table>
31    </div>
32  </div>
33</form>
Note: See TracBrowser for help on using the repository browser.