templates/crm/includes/emailList.html.twig line 1

Open in your IDE?
  1. <div class="main-card mb-3 card">
  2.     <div class="card-body"><h5 class="card-title">E-maile</h5>
  3.         <div class="table-responsive">
  4.             <table class="mb-0 table">
  5.                 <thead>
  6.                 <tr>
  7.                     <th>#</th>
  8.                     <th>Tytuł</th>
  9.                     <th>Nadawca</th>
  10.                     <th>Data</th>
  11.                     {% if not detailsView %}
  12.                     <th>Klient</th>
  13.                     {% endif %}
  14.                 </tr>
  15.                 </thead>
  16.                 <tbody>
  17.                 {% for email in emails %}
  18.                     <tr>
  19.                         <th scope="row"><a href="{{ 'mailSingle?id=' ~ email.id }}"> {{ email.messageUid }}</a></th>
  20.                         <td><a href="{{ 'mailSingle?id=' ~ email.id }}">{{ email.subject }}</a></td>
  21.                         <td><a href="{{ 'mailSingle?id=' ~ email.id }}">{{ email.sender }}</a></td>
  22.                         <td><a href="{{ 'mailSingle?id=' ~ email.id }}">{{ email.receiveDate }}</a></td>
  23.                         {% if detailsView %}
  24.                         {% elseif email.customer==null %}
  25.                             <td> 'brak'</td>
  26.                         {% else %}
  27.                             <td>
  28.                                 <a href="{{ 'details?id=' ~ email.customer.id }}"> {{ email.customer.firstname }} {{ email.customer.lastname }}
  29.                                     ({{ email.customer.email }} ,{{ email.customer.id }}) </a></td>
  30.                         {% endif %}
  31.                     </tr>
  32.                 {% endfor %}
  33. {#                {% for xpage in xpages %}#}
  34. {#                    <a  {% if not xpage.current %} href="{{ xpage.action }} {% endif %}">{{ xpage.number }}</a>&nbsp;#}
  35. {#                {% endfor %}#}
  36.                 </tbody>
  37.             </table>
  38.         </div>
  39.     </div>
  40. </div>