Files
MileageTraker/Web/Views/Shared/EditorTemplates/DateTime.cshtml
T
2012-11-30 21:35:06 -05:00

5 lines
182 B
Plaintext

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