Advertisement
Guest User

Untitled

a guest
May 17th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.43 KB | None | 0 0
  1. <div class="form-group" th:each="question : ${questionList}">
  2.     <div class="col-sm-9">
  3.         <label th:text="${question.questionName}"></label>
  4.         <select class="form-control">
  5.             <option>-Выберите из выпадающего списка нужный вариант-</option>
  6.             <option th:each="case : ${questionList.caseList}"
  7.                     th:value="${case.id}"
  8.                     th:text="${case.caseItem}"></option>
  9.         </select>
  10.     </div>
  11. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement