Details.cshtml 4.38 KB
@model Maps.Entities.FlowIntensity

@{
    Layout = null;
}

<!DOCTYPE html>

<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>Details</title>
</head>
<body>

<div>
    <h4>FlowIntensity</h4>
    <hr />
    <dl class="dl-horizontal">
        <dt>
            @Html.DisplayNameFor(model => model.Begin)
        </dt>
        <dd>
            @Html.DisplayFor(model => model.Begin)
        </dd>
        <dt>
            @Html.DisplayNameFor(model => model.DateAdd)
        </dt>
        <dd>
            @Html.DisplayFor(model => model.DateAdd)
        </dd>
        <dt>
            @Html.DisplayNameFor(model => model.End)
        </dt>
        <dd>
            @Html.DisplayFor(model => model.End)
        </dd>
        <dt>
            @Html.DisplayNameFor(model => model.IntensityBus)
        </dt>
        <dd>
            @Html.DisplayFor(model => model.IntensityBus)
        </dd>
        <dt>
            @Html.DisplayNameFor(model => model.IntensityBusCoupled)
        </dt>
        <dd>
            @Html.DisplayFor(model => model.IntensityBusCoupled)
        </dd>
        <dt>
            @Html.DisplayNameFor(model => model.IntensityCar)
        </dt>
        <dd>
            @Html.DisplayFor(model => model.IntensityCar)
        </dd>
        <dt>
            @Html.DisplayNameFor(model => model.IntensityIncrease)
        </dt>
        <dd>
            @Html.DisplayFor(model => model.IntensityIncrease)
        </dd>
        <dt>
            @Html.DisplayNameFor(model => model.IntensityLorryThirty)
        </dt>
        <dd>
            @Html.DisplayFor(model => model.IntensityLorryThirty)
        </dd>
        <dt>
            @Html.DisplayNameFor(model => model.IntensityLorryTwelve)
        </dt>
        <dd>
            @Html.DisplayFor(model => model.IntensityLorryTwelve)
        </dd>
        <dt>
            @Html.DisplayNameFor(model => model.IntensityLorryTwelveTwenty)
        </dt>
        <dd>
            @Html.DisplayFor(model => model.IntensityLorryTwelveTwenty)
        </dd>
        <dt>
            @Html.DisplayNameFor(model => model.IntensityLorryTwentyThirty)
        </dt>
        <dd>
            @Html.DisplayFor(model => model.IntensityLorryTwentyThirty)
        </dd>
        <dt>
            @Html.DisplayNameFor(model => model.IntensityMoto)
        </dt>
        <dd>
            @Html.DisplayFor(model => model.IntensityMoto)
        </dd>
        <dt>
            @Html.DisplayNameFor(model => model.IntensityMotoSidecar)
        </dt>
        <dd>
            @Html.DisplayFor(model => model.IntensityMotoSidecar)
        </dd>
        <dt>
            @Html.DisplayNameFor(model => model.IntensityTotal)
        </dt>
        <dd>
            @Html.DisplayFor(model => model.IntensityTotal)
        </dd>
        <dt>
            @Html.DisplayNameFor(model => model.IntensityTractorOverTen)
        </dt>
        <dd>
            @Html.DisplayFor(model => model.IntensityTractorOverTen)
        </dd>
        <dt>
            @Html.DisplayNameFor(model => model.IntensityTractorUnderTen)
        </dt>
        <dd>
            @Html.DisplayFor(model => model.IntensityTractorUnderTen)
        </dd>
        <dt>
            @Html.DisplayNameFor(model => model.IntensityTruckEightFourteen)
        </dt>
        <dd>
            @Html.DisplayFor(model => model.IntensityTruckEightFourteen)
        </dd>
        <dt>
            @Html.DisplayNameFor(model => model.IntensityTruckFourteen)
        </dt>
        <dd>
            @Html.DisplayFor(model => model.IntensityTruckFourteen)
        </dd>
        <dt>
            @Html.DisplayNameFor(model => model.IntensityTruckSixEight)
        </dt>
        <dd>
            @Html.DisplayFor(model => model.IntensityTruckSixEight)
        </dd>
        <dt>
            @Html.DisplayNameFor(model => model.IntensityTruckTwo)
        </dt>
        <dd>
            @Html.DisplayFor(model => model.IntensityTruckTwo)
        </dd>
        <dt>
            @Html.DisplayNameFor(model => model.IntensityTruckTwoSix)
        </dt>
        <dd>
            @Html.DisplayFor(model => model.IntensityTruckTwoSix)
        </dd>
        <dt>
            @Html.DisplayNameFor(model => model.Location)
        </dt>
        <dd>
            @Html.DisplayFor(model => model.Location)
        </dd>
    </dl>
</div>
<div>
    <a asp-action="Edit" asp-route-id="@Model.FlowIntensityId">Edit</a> |
    <a asp-action="Index">Back to List</a>
</div>
</body>
</html>