Files
MileageTraker/Web/Views/Shared/EditorTemplates/Object.cshtml
T
2012-12-24 21:18:41 -05:00

19 lines
313 B
Plaintext

@using MileageTraker.Web.Utility
@{
Layout = null;
}
@foreach (var prop in ViewData.ModelMetadata.Properties)
{
if (prop.ShowForEdit)
{
if (!prop.ModelType.IsCollection())
{
@Html.Editor(prop.PropertyName)
}
else
{
}
}
}