19 lines
313 B
Plaintext
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
|
|
{
|
|
|
|
}
|
|
}
|
|
} |