AgentsPerQueue.tt 1.37 KB
# --
# ResponsibilityMatrix.tt - provides HTML for ResponsibilityMatrix
# 
# Copyright (C) 2014 SeTIC - UFSC - http://setic.ufsc.br/
# Version 01/15/2015 - Adjustments for OTRS 4
#
#
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (AGPL). If you
# did not receive this file, see http://www.gnu.org/licenses/agpl.txt.
# --
#

<div class="MainBox ARIARoleMain LayoutFixedSidebar SidebarFirst"><h1>[% Translate("Queues per agent") | html %]</h1></div>
<table class="DataTable SpacingTop" style="width: 80%; margin-left: 10%; margin-bottom: 50px;">
<thead>
<tr>
<th ROWSPAN="1" style="text-align: center; vertical-align: middle">[% Translate("ID") | html %]</th>
<th ROWSPAN="1" style="text-align: center; vertical-align: middle">[% Translate("Agent") | html %]</th>
<th ROWSPAN="1" style="text-align: center; vertical-align: middle">[% Translate("Paths") | html %]</th>
<th ROWSPAN="1" style="text-align: center; vertical-align: middle">[% Translate("Queues") | html %]</th>
</tr>
</thead>
<tbody>
[% RenderBlockStart("QueuesPerAgent") %]
<tr><td>[% Data.ID %]</td><td>[% Data.Agent %]</td>
<td>
<div style="width:100%; max-height:200px; overflow:auto">[% Data.Paths %]</div>
</td>
<td>
<div style="width:100%; max-height:200px; overflow:auto">[% Data.Queues %]</div>
</td>
</tr>
[% RenderBlockEnd("QueuesPerAgent") %]
</tbody>
</table>