import torrus 1.0.9
[freeside.git] / fs_selfservice / FS-SelfService / cgi / myaccount.html
index 6b4187f..a57bfb1 100644 (file)
@@ -10,6 +10,10 @@ Hello <%= $name %>!<BR><BR>
     '';
 %>
 
+<%=
+  $OUT .= qq! <B><A HREF="${url}invoices">View All Invoices</A></B> &nbsp; &nbsp; !;
+%>
+
 <%= if ( $balance > 0 ) {
   if (scalar(grep $_, @hide_payment_fields)) {
     $OUT .= qq! <B><A HREF="${url}make_thirdparty_payment&payby_method=CC">Make a payment</A></B><BR><BR>!;
@@ -81,21 +85,23 @@ 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;
 
     foreach my $ticket ( @tickets ) {
       my $td = qq!<TD BGCOLOR="#$col">!;
+      my $link = qq!<A HREF="${url}tktview;ticket_id=$ticket->{id}">!;
       $OUT .=
-        "<TR>$td". $ticket->{'id'}. "</TD>".
+        "<TR>$td $link". $ticket->{'id'}. "</A></TD>".
         $td. $ticket->{'subject'}. "</TD>".
         $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;
     }