Advertisement
Guest User

Untitled

a guest
Jan 28th, 2022
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.18 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="ru">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <title>index</title>
  6. </head>
  7. <body>
  8.     <form>
  9.         <b>Name</b>
  10.         <select name="nameSortBy">
  11.             <option value="asc">Asc</option>
  12.             <option value="desc">Desc</option>
  13.         </select>
  14.         <select name="name">
  15.             <option value=""/>
  16.             <option th:each="person: ${persons}" th:value="${person.name}" th:text="${person.name}"/>
  17.         </select>
  18.         <br>
  19.  
  20.         <b>Age</b>
  21.         <select name="ageSortBy">
  22.             <option value="asc">Asc</option>
  23.             <option value="desc">Desc</option>
  24.         </select>
  25.         <select name="age">
  26.             <option value=""/>
  27.             <option th:each="person: ${persons}" th:value="${person.age}" th:text="${person.age}"/>
  28.         </select>
  29.         <br>
  30.  
  31.         <button type="submit">Ok</button>
  32.     </form>
  33.     <br>
  34.     <table border>
  35.         <tr>
  36.             <th>Name</th>
  37.             <th>Age</th>
  38.         </tr>
  39.         <tr th:each="person: ${persons}">
  40.             <td th:text="${person.name}" />
  41.             <td th:text="${person.age}" />
  42.         </tr>
  43.     </table>
  44. </body>
  45. </html>
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement