Customizing QueueView

Moderator: crythias

Locked
nking
Znuny newbie
Posts: 35
Joined: 07 May 2012, 19:56
Znuny Version: OTRS 3.0
Real Name: Natalia King
Company: Lyons Consulting Group
Location: Chicago, Illinois
Contact:

Customizing QueueView

Post by nking »

I am looking into adding an additional column for the QueueView page (Tickets >> Queue View >> [some queue]). I want to add column "Responsible Agent" so our guys could just go into appropriate queue and see what tickets have not been picked up yet. I have customized dashboard before, no problem, but I can't seem to find the .dtl file that I need to add that column in.
OTRS 3.0, CentOS 5.5
CSL
Znuny expert
Posts: 159
Joined: 11 Nov 2011, 19:27
Znuny Version: 3.0.11

Re: Customizing QueueView

Post by CSL »

Should be AgentTicketOverviewSmall.dtl I think (for the small view). Have a look at the HTML with an inspection tool and see if you can match it up with the code in there. I'm not sure what the code is for adding responsible agent - you may be able to find this from another dtl file.
Backend: OTRS 3.0.11 RedHat Enterprise Linux 6.2, Apache, MySQL with replication
Frontend: OTRS 3.0.11 RedHat Enterprise Linux 6.2 with SELinux, Apache SSL
nking
Znuny newbie
Posts: 35
Joined: 07 May 2012, 19:56
Znuny Version: OTRS 3.0
Real Name: Natalia King
Company: Lyons Consulting Group
Location: Chicago, Illinois
Contact:

Re: Customizing QueueView

Post by nking »

Yes! Thank you. Added the following pieces of code to accomplish this:

Code: Select all

<th class="Responsible $QData{"CSS"}">
<a name="OverviewControl" href="$Env{"Baselink"}Action=$Env{"Action"};$Data{"LinkSort"};SortBy=Responsible;OrderBy=$LQData{"OrderBy"}">$Text{"Responsible"}</a>
</th>
...and

Code: Select all

<td><div title="$QData{"Responsible"} }">$QData{"Responsible","15"}</div></td><!-- add this line for the responsible -->
OTRS 3.0, CentOS 5.5
Locked