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

13 lines
305 B
Plaintext

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