Advertisement
AllyssonAyslan

index.html

Sep 25th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.72 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang = "pt_br" xmlns:th="http://thymeleaf.org"
  3.     xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
  4. <head>
  5.  
  6. <title>Foosball - Educando com saΓΊde</title>
  7.  
  8. <!--Import Google Icon Font-->
  9. <link href="https://fonts.googleapis.com/icon?family=Material+Icons"
  10.     rel="stylesheet" />
  11.  
  12. <!--Import materialize.css-->
  13. <link type="text/css" rel="stylesheet"
  14.     href="materialize/css/materialize.min.css" media="screen,projection" />
  15.  
  16. <!--Let browser know website is optimized for mobile-->
  17. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  18. </head>
  19. <body>
  20.     <h1>Lista de Alunos</h1>
  21.     <h3>
  22.         <a href="cadastrarAluno" class="waves-effect waves-light btn-large"><i
  23.             class="material-icons left">add_circle_outline</i>Cadastrar Aluno</a>
  24.     </h3>
  25.     <table class="container">
  26.         <thead>
  27.             <tr>
  28.                 <th>Nome:</th>
  29.                 <th>Turma:</th>
  30.                 <th>Telefone:</th>
  31.                 <th>Email:</th>
  32.                 <th>Sexo:</th>
  33.                 <th>Alergia:</th>
  34.                 <th>Obs.:</th>
  35.             </tr>
  36.         </thead>
  37.         <tbody>
  38.             <tr th:each="turma : ${turmas}">
  39.             <tr th:each="cadastro : ${cadastros}">
  40.            
  41.                 <td><span th:text="${cadastro.nome}"></span></td>
  42.                 <td><span th:text="${turma.turma}"></span></td>
  43.                 <td><span th:text="${cadastro.telefone}"></span></td>
  44.                 <td><span th:text="${cadastro.email}"></span></td>
  45.                 <td><span th:text="${cadastro.sexo}"></span></td>
  46.                 <td><span th:text="${cadastro.alergia}"></span></td>
  47.                 <td><span th:text="${cadastro.obs}"></span></td>
  48.             </tr></tr>
  49.            
  50.            
  51.         </tbody>
  52.     </table>
  53.    
  54.     <script type="text/javascript"
  55.         src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
  56.     <script type="text/javascript" src="materialize/js/materialize.min.js"></script>
  57. </body>
  58.  
  59.  
  60. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement