diff options
author | bbaetz%student.usyd.edu.au <> | 2002-08-13 17:01:58 +0200 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-08-13 17:01:58 +0200 |
commit | f9e05e2778aa373cb29c2cc49a470b184981f24d (patch) | |
tree | f77a750531cc9d7367f1204261b4c08fd8f490a7 /template/en/default/global | |
parent | 9b22dcde525cb7e0b0b88b80d627e7e1d3dd5e6c (diff) | |
download | bugzilla-f9e05e2778aa373cb29c2cc49a470b184981f24d.tar.gz bugzilla-f9e05e2778aa373cb29c2cc49a470b184981f24d.tar.xz |
Bug 24823 - show the last modified date at the top of show_bug
Patch by vkissoyan@yahoo.com (Vaskin Kissoyan)
r=bbaetz x2
Diffstat (limited to 'template/en/default/global')
-rw-r--r-- | template/en/default/global/header.html.tmpl | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/template/en/default/global/header.html.tmpl b/template/en/default/global/header.html.tmpl index d4cd092f9..7e20de953 100644 --- a/template/en/default/global/header.html.tmpl +++ b/template/en/default/global/header.html.tmpl @@ -17,6 +17,7 @@ # Rights Reserved. # # Contributor(s): Gervase Markham <gerv@gerv.net> + # Vaskin Kissoyan <vkissoyan@yahoo.com> #%] [%# INTERFACE: @@ -24,6 +25,7 @@ # title: string. Page title. # h1: string. Main page header. # h2: string. Page subheader. + # h3: string. Right-aligned subheader. # bgcolor: string. the page's background color ("#rrggbb"). # onload: string. JavaScript code to run when the page finishes loading. # header_html: string. Any other HTML to go inside the <head> tags. @@ -40,6 +42,7 @@ [% DEFAULT h1 = title h2 = "" + h3 = "" bgcolor = "#ffffff" onload = "" %] @@ -85,7 +88,7 @@ [% INCLUDE global/banner.html.tmpl %] [% IF h1 || h2 %] - <table border="0" cellspacing="0"> + <table border="0" cellspacing="0" width="100%"> <tr> <td valign="top" align="left"> <table border="0" cellpadding="0" cellspacing="2"> @@ -96,8 +99,11 @@ </tr> </table> </td> - <td valign="middle"> </td> + <td valign="middle" align="left"> </td> <td valign="middle" align="left">[% h2 %]</td> + [% IF h3 %] + <td valign="middle" align="right">[% h3 %]</td> + [% END %] </tr> </table> [% END %] |