Advertisement
Guest User

Untitled

a guest
Feb 16th, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.56 KB | None | 0 0
  1. <div class="col-auto">
  2.                 <table class="table table-responsive table-hover table-dark">
  3.                     <thead scope="col">
  4.                     <th>Detected Object</th>
  5.                     <th>Detection percentages</th>
  6.                     </thead>
  7.                     <tbody>
  8.                     <tr th:each="result : ${results}">
  9.                         <td th:text="${result[0]}"></td>
  10.                         <td th:text="${result[1]}"></td>
  11.                     </tr>
  12.                     </tbody>
  13.                 </table>
  14.             </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement