Facebook
From Obese Mockingbird, 7 Years ago, written in HTML5.
Embed
Download Paste or View Raw
Hits: 319
  1. <table class="table-fill">
  2.                 <thead>
  3.                 <tr>
  4.                     <th class="text-left">Id</th>
  5.                     <th class="text-left">Name</th>
  6.                     <th class="text-left">Type1</th>
  7.                     <th class="text-left">Type2</th>
  8.                 </tr>
  9.                 </thead>
  10.                 <tbody class="table-hover">
  11.                 <c:forEach var="pokemon" items="${trainerPokemons}">
  12.                     <tr>
  13.                         <td class="text-left">${pokemon.id}</td>
  14.                         <td class="text-left">${pokemon.name}</td>
  15.                         <td class="text-left">${pokemon.type1.name}</td>
  16.                         <td class="text-left">${pokemon.type2.name}</td>
  17.                     </tr>
  18.                 </c:forEach>
  19.                 </tbody>
  20.             </table>