summaryrefslogtreecommitdiffstats
path: root/template/en/default/global/tabs.html.tmpl
blob: 454066889de983defdbeac1dc6bf609fbbc23298 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[%# 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" cellspacing="0" cellpadding="10" border="0" width="100%">
    <tr>
      <td class="spacer">&nbsp;</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">&nbsp;</td>
    </tr>
  </table>

  <div class="tabbody">
    [% content %]
  </div>

</div>