summaryrefslogtreecommitdiff
path: root/httemplate/elements/table-tickets.html
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2016-06-11 12:24:59 -0700
committerMark Wells <mark@freeside.biz>2016-06-13 13:27:12 -0700
commit9ff504a21d361a27997e94e74908ab663a57f207 (patch)
tree40bd0961e7d4920c98faeabbbbf3fa5e9882ce0d /httemplate/elements/table-tickets.html
parenta6f303fd9f14570f6d1654a175dbeadf00f4bd18 (diff)
show unreplied ticket marker in customer ticket lists, #41670
Diffstat (limited to 'httemplate/elements/table-tickets.html')
-rw-r--r--httemplate/elements/table-tickets.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/httemplate/elements/table-tickets.html b/httemplate/elements/table-tickets.html
index f89f98422..bc02c7c4b 100644
--- a/httemplate/elements/table-tickets.html
+++ b/httemplate/elements/table-tickets.html
@@ -11,6 +11,7 @@ View
% my $bgcolor = '';
<TR>
+ <TH CLASS="grid" BGCOLOR="#cccccc"></TH>
<TH CLASS="grid" BGCOLOR="#cccccc"><% mt('#') |h %></TH>
<TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Subject') |h %></TH>
<TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Status') |h %></TH>
@@ -38,6 +39,16 @@ View
<TR>
<TD CLASS="grid" BGCOLOR="<% $bgcolor %>">
+% if ( $ticket->{is_unreplied} ) {
+ <A CLASS="dot" STYLE="background-color: green" HREF=<%$href%>>
+% } else {
+% # placeholder
+ <A CLASS="dot" STYLE="visibility: hidden" HREF=<%$href%>>
+% }
+ </A>
+ </TD>
+
+ <TD CLASS="grid" BGCOLOR="<% $bgcolor %>">
<A HREF=<%$href%>><% $ticket->{id} %></A>
</TD>