JVFabia

Untitled

Aug 7th, 2020
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.69 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml"
  3.      xmlns:th="http://www.thymeleaf.org">
  4. <head>
  5.     <meta charset="utf-8"/>
  6.     <title>Sales Manager Application</title>
  7. </head>
  8. <body>
  9. <div align="center">
  10.     <h1>Actor Records</h1>
  11.     <a href="/new">Enter New Sale</a>
  12.     <br/><br/>
  13.     <table border="1" cellpadding="10">
  14.         <thead>
  15.         <tr>
  16.             <th>Nombre</th>
  17.             <th>Sexo</th>
  18.         </tr>
  19.         </thead>
  20.         <tbody>
  21.         <tr th:each="actor : ${listActor}">
  22.             <td th:text="${actor.nombre}">nombre</td>
  23.             <td th:text="${actor.sexo}">sexo</td>
  24.         </tr>
  25.         </tbody>
  26.     </table>
  27. </div>
  28. </body>
  29. </html>
Add Comment
Please, Sign In to add comment