Files
MileageTraker/Web/Views/Shared/EditorTemplates/Date.cshtml
T
2015-07-21 23:07:41 -04:00

8 lines
243 B
Plaintext

@using MileageTraker.Web.Utility
@model DateTime
@{
Layout = "~/Views/Shared/EditorTemplates/_FieldLayout.cshtml";
}
@Html.TextBox("", (Model != DateTime.MinValue ? Model.ToShortDateString() : string.Empty ), Html.GetInputSizeClass())