Advertisement
Guest User

Untitled

a guest
Jan 16th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. <div class="container-fluid">
  2. <div class="form-group">
  3. <div class="col-lg-6 col-md-6 col-sm-12">
  4. @Html.LabelFor(model => model.AssigneeTeam, htmlAttributes: new { @class = "control-label col-md-5 col-sm-12 text-left" })
  5. <div class="col-md-6 col-md-offset-1 col-sm-12">
  6. @Html.DropDownListFor(model => model.AssigneeTeam,
  7. EnumHelper.GetSelectList(typeof(WebApplication1.Models.RequestBase.AssigneeTeams)),
  8. new { htmlAttributes = new { @class = "form-control input-sm" } })
  9. @Html.ValidationMessageFor(model => model.AssigneeTeam, "", new { @class = "text-danger" })
  10. </div>
  11. </div>
  12.  
  13. <div class="col-lg-6 col-md-6 col-sm-12">
  14. @Html.LabelFor(model => model.Priority, htmlAttributes: new { @class = "control-label col-md-5 col-sm-12 text-left" })
  15. <div class="col-md-6 col-md-offset-1 col-sm-12">
  16. @Html.DropDownListFor(model => model.Level,
  17. EnumHelper.GetSelectList(typeof(WebApplication1.Models.RequestBase.PriorityLevels)),
  18. new { htmlAttributes = new { @class = "form-control input-sm" } })
  19. @Html.ValidationMessageFor(model => model.Priority, "", new { @class = "text-danger" })
  20. </div>
  21. </div>
  22.  
  23. <div class="col-lg-6 col-md-6 col-sm-12">
  24. @Html.LabelFor(model => model.AffectedComponent, htmlAttributes: new { @class = "control-label col-md-5 col-sm-12 text-left" })
  25. <div class="col-md-6 col-md-offset-1 col-sm-12">
  26. @Html.DropDownListFor(model => model.AffectedComponent, EnumHelper.GetSelectList(typeof(WebApplication1.Models.RequestBase.EstateComponents)), new { htmlAttributes = new { @class = "form-control input-sm" } })
  27. @Html.ValidationMessageFor(model => model.AffectedComponent, "", new { @class = "text-danger" })
  28. </div>
  29. </div>
  30.  
  31. <div class="col-lg-6 col-md-6 col-sm-12">
  32. @Html.LabelFor(model => model.Type, htmlAttributes: new { @class = "control-label col-md-5 col-sm-12 text-left" })
  33. <div class="col-md-6 col-md-offset-1 col-sm-12">
  34. @Html.DropDownListFor(model => model.Type,
  35. EnumHelper.GetSelectList(typeof(WebApplication1.Models.RequestBase.ChangeType)),new { htmlAttributes = new { @class = "form-control input-sm" } })
  36. @Html.ValidationMessageFor(model => model.Type, "", new { @class = "text-danger" })
  37. </div>
  38. </div>
  39. </div>
  40. </div>
  41. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement