8 lines
243 B
Plaintext
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())
|