Advertisement
Guest User

Untitled

a guest
Mar 13th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.81 KB | None | 0 0
  1. <div class="inner-div2">
  2. <div class="right-welcome-div2">
  3. <div class="counterdiv">
  4.  
  5.  
  6. </div>
  7. <div class="listdivleft">
  8. <div style="height: 80%; width: 100%; overflow: auto">
  9. <div class="title2" style="margin-top: 15px; margin-left: 15px; margin-bottom: 15px;padding-top: 10px">
  10. </div>
  11. </div>
  12. </div>
  13.  
  14. </div>
  15.  
  16. <div class="left-welcome-div2">
  17. <div class="counterdiv">
  18. <div class="companydropdown">
  19.  
  20. </div>
  21. <div class="vacancydropdown">
  22.  
  23. </div>
  24. </div>
  25. <div class="listdivright">
  26. <div style="height: 80%; width: 100%; overflow: auto">
  27.  
  28. @foreach (var item in Model)
  29. {
  30. <div class="title" style="margin-top:15px;margin-left:15px; margin-bottom: 10px;">
  31. <img class="click" src="@Url.Content("~/Images/plus_plus.png")" />
  32. <span>
  33. @Html.TextBoxFor(modelItem => item.question, new {@class="testclass", @readonly = "readonly" })
  34. </span>
  35.  
  36. <a class="click2" style="margin-left:10px;">
  37. <img src='@Url.Content("~/Images/arrow.png")' />
  38. </a>
  39. <a style="margin-left:25px;" href='@Url.Action("Edit", "Questions", new {id = item.QuestionId})'>
  40. <img src='@Url.Content("~/Images/Edit.png")' />
  41. </a>
  42. <a href='@Url.Action("Delete", "Questions", new {id = item.QuestionId})'>
  43. <img src='@Url.Content("~/Images/Delete.png")' />
  44. </a>
  45. </div>
  46. <div class="content" style="margin-left:60px; width: 80%; height: 100px; background: white">
  47. <div style="width: 100%">
  48. <div style="float:left; width: 50%;">
  49. <b>@Html.LabelFor(modelItem=>item.TimeForAnswer)</b>
  50. <b>:</b>
  51. <span>@Html.DisplayFor(modelItem=>item.TimeForAnswer)</span>
  52. </div>
  53. <div style="float:right;width: 50%;">
  54. <b>@Html.LabelFor(modelItem => item.TimeForReady)</b>
  55. <b>:</b>
  56. <b>@Html.DisplayFor(modelItem => item.TimeForReady)</b>
  57. </div>
  58. </div>
  59. <div style="width: 100%; text-align: center;" >
  60. <b>@Html.LabelFor(modelItem => item.Retries)</b>
  61. <b>:</b>
  62. <b>@Html.DisplayFor(modelItem => item.Retries)</b>
  63. </div>
  64. </div>
  65. }
  66.  
  67. </div>
  68. <div style="height: 20%;">
  69. <button class="btn btn-default" style="margin-top: 15px; margin-left: 20px;">
  70. @Html.ActionLink("Добавить вопрос","Create","Questions", null, new { @style = "color:white;"} )
  71. </button>
  72. <button class="btn btn-default" style="margin-top: 15px; margin-left: 200px;">
  73. @Html.ActionLink("Далее", "RoleForSending", "Questions", null, new { @style = "color:white;"} )
  74. </button>
  75. </div>
  76. </div>
  77. </div>
  78. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement