Files
LeafWeb/WebCms/Views/Shared/EditorTemplates/Enum.cshtml
T
2016-11-07 12:56:17 -05:00

10 lines
326 B
Plaintext

@using WebCms.Utility
@model object
<div class="form-group@(Html.ValidationErrorFor(m => m, " has-error"))">
@Html.LabelFor(m => m, new { @class = "control-label" })
@Html.EnumDropDownListFor(m => m, new { @class = "form-control" })
@Html.ValidationMessageFor(m => m, null, new { @class = "help-block" })
</div>