diff options
author | levinse <levinse> | 2010-12-17 19:32:06 +0000 |
---|---|---|
committer | levinse <levinse> | 2010-12-17 19:32:06 +0000 |
commit | 7dc0206e7ff40bfd3e95018a7d724a63ce0af8ab (patch) | |
tree | e916a6d0af968394c91cdeb4c2b399d5b044c438 /fs_selfservice/FS-SelfService/cgi/myaccount.html | |
parent | 0a9c2506f72162e9fc99679a35a6540b27a22848 (diff) |
self-service improvements, RT10883
Diffstat (limited to 'fs_selfservice/FS-SelfService/cgi/myaccount.html')
-rw-r--r-- | fs_selfservice/FS-SelfService/cgi/myaccount.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs_selfservice/FS-SelfService/cgi/myaccount.html b/fs_selfservice/FS-SelfService/cgi/myaccount.html index eaf4164bf..a57bfb14a 100644 --- a/fs_selfservice/FS-SelfService/cgi/myaccount.html +++ b/fs_selfservice/FS-SelfService/cgi/myaccount.html @@ -85,9 +85,9 @@ Hello <%= $name %>!<BR><BR> <%= if ( @tickets ) { $OUT .= '<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2 BGCOLOR="#eeeeee">'. - '<TR><TH BGCOLOR="#ff6666" COLSPAN=5>Open Tickets</TH></TR>'. + '<TR><TH BGCOLOR="#ff6666" COLSPAN=6>Open Tickets</TH></TR>'. '<TR><TH>#</TH><TH>Subject</TH><TH>Priority</TH><TH>Queue</TH>'. - '<TH>Status</TH></TR>'; + '<TH>Status</TH><TH>Created</TH></TR>'; my $col1 = "ffffff"; my $col2 = "dddddd"; my $col = $col1; @@ -101,6 +101,7 @@ Hello <%= $name %>!<BR><BR> $td. ($ticket->{'content'} || $ticket->{'priority'}). "</TD>". $td. $ticket->{'queue'}. "</TD>". $td. $ticket->{'status'}. "</TD>". + $td. $ticket->{'created'}. "</TD>". '</TR>'; $col = $col eq $col1 ? $col2 : $col1; } |