diff options
author | ivan <ivan> | 2006-12-15 13:00:18 +0000 |
---|---|---|
committer | ivan <ivan> | 2006-12-15 13:00:18 +0000 |
commit | 3f6c5dd84a8ec1f83afe484acc10052caae5a4e8 (patch) | |
tree | 0f65767402e004a730f4c601764ee90263e2709e | |
parent | 1ec49b28c30c84962670d80d1c143e65b5b9370a (diff) |
add a quick start at a "dashboard" customer list, mostly for internal use for starters
-rw-r--r-- | httemplate/elements/dashboard-toplist.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/httemplate/elements/dashboard-toplist.html b/httemplate/elements/dashboard-toplist.html index 6276f9fd3..b0ee8c8a3 100644 --- a/httemplate/elements/dashboard-toplist.html +++ b/httemplate/elements/dashboard-toplist.html @@ -62,7 +62,7 @@ <TD CLASS="grid" COLSPAN="<% scalar(@custom_priorities) + 2 %>" BGCOLOR="<% $bgcolor %>"> </TD> </TR> -% } else { #label line +% } elsif ( $line =~ /^\S/ { #label line <TR> <TH CLASS="grid" BGCOLOR="#cccccc"><% $line %></TH> @@ -73,6 +73,12 @@ % } </TR> +% } else { #regular line + + <TR> + <TD CLASS="grid" COLSPAN="<% scalar(@custom_priorities) + 2 %>" BGCOLOR="<% $bgcolor %>"><% $line %></TD> + </TR> + % } % |