@model MileageTraker.Web.ViewModels.CreateLog.CreateLogViewModel @{ ViewBag.Title = "Success"; Layout = "~/Views/Shared/_Layout.cshtml"; } @{
You've successfully created an entry for @Html.DisplayTextFor(m => m.EmployeeName) traveling to @Html.DisplayTextFor(m => m.CityName) on @Html.Encode(Model.Date.ToShortDateString()) in Vehicle Id @Html.DisplayTextFor(m => m.VehicleId)
@Html.ActionLink("Create another", "Index", null, new { @class = "btn" })
}