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

11 lines
201 B
Plaintext

@{
Layout = "~/Views/Shared/EditorTemplates/_FieldLayout.cshtml";
}
@if (!(Model is Enum))
{
@Html.TextBox("", ViewData.TemplateInfo.FormattedModelValue)
}
else
{
@Html.Editor("", "Enum")
}