templates/Messages/list.html.twig line 1

  1. <table>
  2.     <thead>
  3.     <tr>
  4.         <th class="large data-enabled-header noid">Date</th>
  5.         <th>ExpĂ©diteur</th>
  6.         <th>CordonnĂ©es</th>
  7.         <th>Objet</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.lName~' '~o.fName}}</td>
  15.         <td>{{o.email}}<br>{{o.phone}}</td>
  16.         <td>{{o.subject~' / '~o.object}}</td>
  17.         <td class="nowrap">
  18.             <a href="{{url('messages-view',{id:o.id})}}" class="action btn-popup fa fa-eye"></a>
  19.             <a href="{{url('messages-send',{id:o.id})}}" class="action btn-flash fa fa-sync"></a>
  20.         </td>
  21.     </tr>
  22.     {%endfor%}
  23. </table>