Files
MileageTraker/Web/Views/CreateLog/Success.cshtml
T
2012-12-09 14:56:43 -05:00

23 lines
672 B
Plaintext

@model MileageTraker.Web.ViewModels.CreateLogViewModel
@{
ViewBag.Title = "Success";
ViewBag.PageStyle = "~/Content/CreateLog/Index.css";
Layout = "~/Views/Shared/_Layout.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>
}