diff options
| author | Mark Wells <mark@freeside.biz> | 2016-06-11 12:24:59 -0700 |
|---|---|---|
| committer | Mark Wells <mark@freeside.biz> | 2016-06-11 23:22:32 -0700 |
| commit | 46d8aa8b9d1fc12af33bb8b517301789f871d864 (patch) | |
| tree | 17c9e6aff09212f4a0588654efbccf07f9206e1e /httemplate/elements/table-tickets.html | |
| parent | 89507319807e2f988bffa25981d4df927000f9eb (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> |
