diff options
author | ivan <ivan> | 2007-08-03 23:00:37 +0000 |
---|---|---|
committer | ivan <ivan> | 2007-08-03 23:00:37 +0000 |
commit | 73bb34411d2b1ccde0985bae093a03d00bb98878 (patch) | |
tree | 473301eb8a76d378b15b5983568e3cfd82d9697a /rt/html/Elements | |
parent | 14cb76d01568f0a1dbcc9d286f9adec790c961dd (diff) |
at least sort out the top searchboxes
Diffstat (limited to 'rt/html/Elements')
-rw-r--r-- | rt/html/Elements/PageLayout | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/rt/html/Elements/PageLayout b/rt/html/Elements/PageLayout index 493f2275f..88455417a 100644 --- a/rt/html/Elements/PageLayout +++ b/rt/html/Elements/PageLayout @@ -45,14 +45,27 @@ %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} + +<table class="black" border=0 cellspacing=0 cellpadding=0 width="100%"> +<tr> + <TD colspan=5 WIDTH="100%" STYLE="padding:0"><IMG BORDER=0 ALT="" SRC="<% $RT: +:URI::freeside::URL %>/images/black-gradient.png" HEIGHT="13" WIDTH="100%"></TD> +</tr> +<tr> + <div id="topactions"> -% foreach my $action (reverse sort keys %{$topactions}) { +% my $notfirst = 0; foreach my $action (sort keys %{$topactions}) { <span class="topaction"> + <td class="blackright" ALIGN="right" VALIGN="center"> % $m->out($topactions->{"$action"}->{'html'}); + </td> </span> % } </div> +</tr> +</table> + %# End of div#quickbar from /Elements/Header </div> |