source: main/waeup.kofa/branches/uli-diazo-themed/src/waeup/kofa/browser/templates/departmentpage.pt @ 10995

Last change on this file since 10995 was 10995, checked in by uli, 11 years ago

Use twbs 3.x tabs.

File size: 1.5 KB
Line 
1<ul i18n:domain="waeup.kofa" class="tabs nav nav-tabs" data-tabs="tabs">
2  <li class="active"><a href="#tab1" data-toggle="tab">
3    <span i18n:translate="">Courses</span></a>
4  </li>
5  <li><a href="#tab2" data-toggle="tab">
6    <span i18n:translate="">Certificates</span></a>
7  </li>
8</ul>
9<div i18n:domain="waeup.kofa" class="tab-content">
10  <div id="tab1" class="active tab-pane">
11    <br />
12    <table class="display dataTable">
13      <thead>
14        <tr>
15          <th i18n:translate="">Code</th>
16          <th i18n:translate="">Title</th>
17        </tr>
18      </thead>
19      <tbody>
20        <tr tal:repeat="entry view/getCourses" class="gradeC">
21          <td>
22            <a href=""
23               tal:attributes="href entry/url"
24               tal:content="entry/name">Name</a>
25          </td>
26          <td tal:content="entry/container/title">
27            Title
28          </td>
29        </tr>
30      </tbody>
31    </table>
32  </div>
33  <div id="tab2" class="tab-pane">
34    <br />
35    <table class="display dataTable">
36      <thead>
37        <tr>
38          <th i18n:translate="">Code</th>
39          <th i18n:translate="">Title</th>
40        </tr>
41      </thead>
42      <tbody>
43        <tr tal:repeat="entry view/getCertificates" class="gradeC">
44          <td>
45            <a href=""
46               tal:attributes="href entry/url"
47               tal:content="entry/name">Name</a>
48          </td>
49          <td tal:content="entry/container/title">
50            Title
51          </td>
52        </tr>
53      </tbody>
54    </table>
55  </div>
56</div>
Note: See TracBrowser for help on using the repository browser.