42 lines
1.7 KiB
Plaintext
42 lines
1.7 KiB
Plaintext
@model IEnumerable<GODATA.Models.Ticket.EscalationLevelList>
|
|
@if (Model != null && Model.Count() > 0)
|
|
{
|
|
<table id="tableEscalationMembersDetails" cellpadding="0" cellspacing="0">
|
|
|
|
<thead class="StructureTD">
|
|
<tr>
|
|
<th class="tableCelllabel" style="background: none !important; color: black;">
|
|
<span class="">@Html.DisplayNameFor(model => model.ManagerLevel)</span>
|
|
</th>
|
|
<th class="tableCelllabel" style="background: none !important; color: black;">
|
|
<span class="">@Html.DisplayNameFor(model => model.ManagerName)</span>
|
|
</th>
|
|
<th class="tableCelllabel" style="background: none !important; color: black;">
|
|
<span class="">@Html.DisplayNameFor(model => model.ManagerPhoneNo)</span>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody class="StructureTD">
|
|
@foreach (var item in Model)
|
|
{
|
|
<tr>
|
|
<td class="tableCellinfo" style="width: 30% !important; background: none !important;">
|
|
@Html.DisplayFor(modelItem => item.ManagerLevel)
|
|
</td>
|
|
<td class="tableCellinfo" style="width: 35% !important; background: none !important;">
|
|
@Html.DisplayFor(modelItem => item.ManagerName)
|
|
</td>
|
|
<td class="tableCellinfo" style="width: 35% !important; background: none !important;">
|
|
@Html.DisplayFor(modelItem => item.ManagerPhoneNo)
|
|
</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|
|
}
|
|
|
|
<style>
|
|
|
|
</style>
|