We have also changed /Kernel/Output/HTML/Standard/AgentDashboardTicketGeneric.dtl in order to insert a new column into the Dashboard.
We now want to expose one of these new CustomerUser fields on the dashboard (called SomeFieldName in this example):
Code: Select all
<!-- dtl:block:ContentLargeTicketGenericRowMeta -->
<td class="W10pc">
<a href="$Env{"Baselink"}Action=AgentTicketZoom;TicketID=$Data{"TicketID"}" title="$QData{"Title"}" class="AsBlock MasterActionLink">$Data{"TicketNumber"}</a>
</td>
<td class="W50pc">
<div title="$QData{"Title"}">$QData{"Title","70"}</div>
</td>
<!-- CUSTOM CODE -->
<td>$QData{"SomeFieldName"}</td>
<!-- END OF CUSTOM CODE -->
<td>$QData{"Time"}</td>
</tr>