23 lines
676 B
Plaintext
23 lines
676 B
Plaintext
@model MileageTraker.Web.ViewModels.CreateLogViewModel
|
|
@{
|
|
|
|
ViewBag.Title = "Success";
|
|
ViewBag.PageStyle = "~/Content/CreateLog/Index.css";
|
|
Layout = "~/Views/Shared/_Layout.min.cshtml";
|
|
}
|
|
@{
|
|
@:<fieldset>
|
|
<legend>@ViewBag.Title</legend>
|
|
<p>
|
|
You've successfully created an entry
|
|
for <strong>@Html.Encode(Model.EmployeeName)</strong>
|
|
traveling to <strong>@Html.Encode(Model.CityName)</strong>
|
|
on <strong>@Html.Encode(Model.Date)</strong>
|
|
in VehicleId <strong>@Html.Encode(Model.VehicleId)</strong>
|
|
</p>
|
|
<p>
|
|
@Html.ActionLink("Create another", "Index", null, new { @class = "ui-button" })
|
|
</p>
|
|
|
|
@:</fieldset>
|
|
} |