19 lines
600 B
Plaintext
19 lines
600 B
Plaintext
@model MileageTraker.Web.ViewModels.CreateLog.CreateLogViewModel
|
|
@{
|
|
|
|
ViewBag.Title = "Success";
|
|
}
|
|
|
|
@{
|
|
<h4>@ViewBag.Title</h4>
|
|
<p>
|
|
You've successfully created an entry
|
|
for <strong>@Html.DisplayTextFor(m => m.EmployeeName)</strong>
|
|
traveling to <strong>@Html.DisplayTextFor(m => m.CityName)</strong>
|
|
on <strong>@Html.Encode(Model.Date.ToShortDateString())</strong>
|
|
in Vehicle Id <strong>@Html.DisplayTextFor(m => m.VehicleId)</strong>
|
|
</p>
|
|
<p>
|
|
@Html.ActionLink("Create another", "Index", null, new { @class = "btn" })
|
|
</p>
|
|
} |