templates\admin\display_user_survey\log_table.html.twig line 1

Open in your IDE?
  1. <table class="table table-striped dataTable-table">
  2.     <thead class="thead-light">
  3.     <tr>
  4.         <th class="text-uppercase text-dark text-xxs font-weight-bold opacity-7 px-1 col-3">
  5.             Date
  6.         </th>
  7.         <th class="text-uppercase text-dark text-xxs font-weight-bold opacity-7 px-1 col-3">
  8.             Utilisateur
  9.         </th>
  10.         <th class="text-uppercase text-dark text-xxs font-weight-bold opacity-7 px-1 col-6">
  11.             Statut
  12.         </th>
  13.     </tr>
  14.     </thead>
  15.     <tbody>
  16.     {% for log in logHistory %}
  17.         <tr>
  18.             <td class="text-sm text-left">
  19.                 {{ log['date'] }}
  20.             </td>
  21.             <td class="text-sm text-left">
  22.                 {{ log['username'] }}
  23.             </td>
  24.             <td class="text-sm text-left">
  25.                 {{ log['currentStatus'] }}
  26.             </td>
  27.         </tr>
  28.     {% endfor %}
  29.     </tbody>
  30. </table>