Skip to content

Commit

Permalink
enhacement: helpdesk ticket priority visual presentation - missed change
Browse files Browse the repository at this point in the history
  • Loading branch information
chilek committed Jan 22, 2018
1 parent fe1e84d commit 0c67718
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion templates/default/rt/rtqueueviewbox.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@
<IMG src="{$_RT_STATES[$queue[ticket].state].img}" alt="" class="lms-ui-tooltip-rtticketinfo" data-resourceid="{$queue[ticket].id}">
</TD>
<TD class="nobr">
<span class="bold" style="{$_RT_PRIORITY_STYLES[$queue[ticket].priority]}">{$queue[ticket].id|string_format:"%06d"}</span>
<br>
{if $queue[ticket].state == $smarty.const.RT_NEW}
<span class="red">
{elseif $queue[ticket].state == $smarty.const.RT_DEAD}
<span class="brown">
{/if}
<span class="bold">{$queue[ticket].id|string_format:"%06d"}</span><br>
{$queue[ticket].createtime|date_format:"%Y/%m/%d %H:%M:%S"}
{if $queue[ticket].state == $smarty.const.RT_NEW || $queue[ticket].state == $smarty.const.RT_DEAD}
</span>
Expand Down

0 comments on commit 0c67718

Please sign in to comment.