54 lines
2.5 KiB
Plaintext
54 lines
2.5 KiB
Plaintext
@model GODATA.Models.Inventory.ManageFleet
|
|
|
|
<div class="ldSection managefleet_dealerdetail_wrapper">
|
|
<img src="~/Content/css/images/dealer-detail-tag01.png" class="detail_lables" />
|
|
<table class="themeTable" cellpadding="5" id="tblUserInventory" cellspacing="0">
|
|
<tbody class="StructureTD">
|
|
<tr>
|
|
<td class="tableCelllabel">
|
|
<span class="darktxt">Dealer SCode</span>
|
|
</td>
|
|
<td class="tableCellinfo">
|
|
@Html.DisplayFor(model => model.DealerId)
|
|
</td>
|
|
<td class="tableCelllabel">
|
|
<span class="darktxt">@Html.DisplayNameFor(model => model.DealerDealerName)</span>
|
|
</td>
|
|
<td class="tableCellinfo">
|
|
@Html.DisplayFor(model => model.DealerDealerName)
|
|
</td>
|
|
</tr>
|
|
@* <tr>
|
|
<td class="tableCelllabel">
|
|
<span class="darktxt">@Html.DisplayNameFor(model => model.DealerState)</span>
|
|
</td>
|
|
|
|
<td class="tableCellinfo">
|
|
@Html.DisplayFor(model => model.DealerState)
|
|
</td>
|
|
|
|
<td class="tableCelllabel bordernone">
|
|
<span class="darktxt">@Html.DisplayNameFor(model => model.DealerCity)</span>
|
|
</td>
|
|
<td class="tableCellinfo bordernone">
|
|
@Html.DisplayFor(model => model.DealerCity)
|
|
</td>
|
|
|
|
</tr>*@
|
|
<tr>
|
|
<td class="tableCelllabel">
|
|
<span class="darktxt">@Html.DisplayNameFor(model => model.DealerContactNo)</span>
|
|
</td>
|
|
<td class="tableCellinfo">
|
|
@Html.DisplayFor(model => model.DealerContactNo)
|
|
</td>
|
|
<td class="tableCelllabel">
|
|
<span class="darktxt"></span>
|
|
</td>
|
|
<td class="tableCellinfo">
|
|
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div> |