EOS/Views/TicketAdministration_Dealer/TicketAdministrationDealer_GetOpencloseTicketEscalationMembersDetails.cshtml
Nidhi Bhargava f0c1ab20e1 code push
2025-09-04 16:25:07 +05:30

42 lines
1.7 KiB
Plaintext

@model IEnumerable<GODATA.Models.TicketAdministration_Dealer.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>