r/a=justdave git-svn-id: svn://10.0.0.236/trunk@265157 18797224-902f-48f8-a5cc-f745e15eee43
43 lines
1.3 KiB
Cheetah
43 lines
1.3 KiB
Cheetah
[%# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
# This Source Code Form is "Incompatible With Secondary Licenses", as
|
|
# defined by the Mozilla Public License, v. 2.0.
|
|
#%]
|
|
|
|
[%# INTERFACE:
|
|
# tabs: List of hashes. Must have at least one item. Each hash has:
|
|
# name: string. Name of the tab.
|
|
# link: string. relative URL to the tab's resource on this installation.
|
|
# label: string. text displayed in the tab.
|
|
# current_tab_name: string. name of the currently selected tab
|
|
#%]
|
|
|
|
<div class="tabbed">
|
|
<table class="tabs">
|
|
<tr>
|
|
<td class="spacer"> </td>
|
|
|
|
[% FOREACH tab = tabs %]
|
|
[% IF tab.name == current_tab_name %]
|
|
<td id="tab_[% tab.name FILTER html %]" class="selected">
|
|
[% tab.label FILTER html %]</td>
|
|
[% ELSE %]
|
|
<td id="tab_[% tab.name FILTER html %]" class="clickable_area"
|
|
onClick="document.location='[% tab.link FILTER html %]'">
|
|
<a href="[% tab.link FILTER html %]">[% tab.label FILTER html %]</a>
|
|
</td>
|
|
[% END %]
|
|
[% END %]
|
|
|
|
<td class="spacer"> </td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div class="tabbody">
|
|
[% content %]
|
|
</div>
|
|
|
|
</div>
|