summaryrefslogtreecommitdiffstats
path: root/template/en/default/account/prefs/prefs.html.tmpl
diff options
context:
space:
mode:
authormyk%mozilla.org <>2005-07-30 09:41:09 +0200
committermyk%mozilla.org <>2005-07-30 09:41:09 +0200
commitf55027e7a07f4cb3f74cd6c42e710e794564df3c (patch)
treeb1862ec2fc0966880f67691bc9e2fd81972c1d1f /template/en/default/account/prefs/prefs.html.tmpl
parentab199bf568703d0c287d0f21ce1816e44183aa02 (diff)
downloadbugzilla-f55027e7a07f4cb3f74cd6c42e710e794564df3c.tar.gz
bugzilla-f55027e7a07f4cb3f74cd6c42e710e794564df3c.tar.xz
Fix for bug 302702: refactors tabs code into shared file so not only prefs and search but also other pages can use it
Diffstat (limited to 'template/en/default/account/prefs/prefs.html.tmpl')
-rw-r--r--template/en/default/account/prefs/prefs.html.tmpl64
1 files changed, 20 insertions, 44 deletions
diff --git a/template/en/default/account/prefs/prefs.html.tmpl b/template/en/default/account/prefs/prefs.html.tmpl
index d909f3b8a..5287ff1e4 100644
--- a/template/en/default/account/prefs/prefs.html.tmpl
+++ b/template/en/default/account/prefs/prefs.html.tmpl
@@ -38,57 +38,33 @@
[% PROCESS global/header.html.tmpl
title = "User Preferences"
h2 = filtered_login
- style = "td.selected_tab {
- border-width: 2px 2px 0px;
- border-style: solid;
- border-color: black;
- }
- td.unselected_tab, td.spacer {
- border-width: 0px 0px 2px 0px;
- border-style: solid;
- border-color: black;
- }"
%]
-[% tabs = [ { name => "account", description => "Account Preferences",
- saveable => "1" },
- { name => "settings", description => "General Preferences",
- saveable => "1" },
- { name => "email", description => "Email Preferences",
- saveable => "1" },
- { name => "saved-searches", description => "Saved searches",
- saveable => "1" },
- { name => "permissions", description => "Permissions",
- saveable => "0" } ] %]
+[% tabs = [ { name => "account", label => "Account Preferences",
+ link => "userprefs.cgi?tab=account", saveable => "1" },
+ { name => "settings", label => "General Preferences",
+ link => "userprefs.cgi?tab=settings", saveable => "1" },
+ { name => "email", label => "Email Preferences",
+ link => "userprefs.cgi?tab=email", saveable => "1" },
+ { name => "saved-searches", label => "Saved searches",
+ link => "userprefs.cgi?tab=saved-searches", saveable => "1" },
+ { name => "permissions", label => "Permissions",
+ link => "userprefs.cgi?tab=permissions", saveable => "0" } ] %]
-<center>
- <table cellspacing="0" cellpadding="10" border="0" width="100%">
- <tr>
- <td class="spacer">&nbsp;</td>
-
- [% FOREACH tab = tabs %]
- [% IF tab.name == current_tab_name %]
- [% current_tab = tab %]
- <td align="center" bgcolor="lightblue" class="selected_tab">
- [% tab.description %]
- </td>
- [% ELSE %]
- <td align="center" bgcolor="#BBBBEE" class="unselected_tab">
- <a href="userprefs.cgi?tab=[% tab.name %]">[% tab.description %]</a>
- </td>
- [% END %]
- [% END %]
-
- <td class="spacer">&nbsp;</td>
- </tr>
- </table>
-</center>
+[% FOREACH tab IN tabs %]
+ [% IF tab.name == current_tab_name %]
+ [% current_tab=tab %]
+ [% LAST %]
+ [% END %]
+[% END %]
+
+[% PROCESS global/tabs.html.tmpl %]
[% IF changes_saved %]
<p>
<font color="red">
The changes to your
- [% current_tab.description FILTER lower %] have been saved.
+ [% current_tab.label FILTER lower %] have been saved.
</font>
</p>
[% IF email_changes_saved %]
@@ -99,7 +75,7 @@
[% END %]
[% END %]
-<h3>[% current_tab.description %]</h3>
+<h3>[% current_tab.label %]</h3>
<form name="userprefsform" method="post" action="userprefs.cgi">
<input type="hidden" name="tab" value="[% current_tab.name %]">