diff options
| author | Mark Wells <mark@freeside.biz> | 2016-06-11 12:24:59 -0700 |
|---|---|---|
| committer | Mark Wells <mark@freeside.biz> | 2016-06-11 12:24:59 -0700 |
| commit | c3217834a42fa68de630a2d6d518742f94714aed (patch) | |
| tree | 2da170c96b4bf0008899b8f3b27acd6a1897cb1d /httemplate/elements/table-tickets.html | |
| parent | f136b7059017863e2ff4819376c42fe5869b2042 (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.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/httemplate/elements/table-tickets.html b/httemplate/elements/table-tickets.html index d722c9d2b..b322a5f7c 100644 --- a/httemplate/elements/table-tickets.html +++ b/httemplate/elements/table-tickets.html @@ -14,6 +14,7 @@ View <THEAD> <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> @@ -42,6 +43,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> |
