templates/Subscribers/list.html.twig line 1

  1. <table>
  2.     <thead>
  3.     <tr>
  4.         <th class="large data-enabled-header noid">Date</th>
  5.         <th>Nom</th>
  6.         <th>Email</th>
  7.         <th>Date</th>
  8.         <th>Actions</th>
  9.     </tr>
  10.     </thead>
  11.     {%for o in messages%}
  12.     <tr>
  13.         <td class="large noid">{{o.date|pretty_datetime}}</td>
  14.         <td>{{o.name}}</td>
  15.         <td>{{o.email}}</td>
  16.         <td>{{o.date|pretty_datetime}}</td>
  17.         <td class="nowrap">
  18.         </td>
  19.     </tr>
  20.     {%endfor%}
  21. </table>