Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml"
- xmlns:th="http://www.thymeleaf.org">
- <head>
- <meta charset="utf-8"/>
- <title>Sales Manager Application</title>
- </head>
- <body>
- <div align="center">
- <h1>Actor Records</h1>
- <a href="/new">Enter New Sale</a>
- <br/><br/>
- <table border="1" cellpadding="10">
- <thead>
- <tr>
- <th>Nombre</th>
- <th>Sexo</th>
- </tr>
- </thead>
- <tbody>
- <tr th:each="actor : ${listActor}">
- <td th:text="${actor.nombre}">nombre</td>
- <td th:text="${actor.sexo}">sexo</td>
- </tr>
- </tbody>
- </table>
- </div>
- </body>
- </html>
Add Comment
Please, Sign In to add comment