Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

email.part.php 1.3KB

12345678910111213141516171819202122232425262728293031
  1. <table class="table table-hover">
  2. <thead class="thead-light">
  3. <tr>
  4. <th><?php echo _('Surname'); ?></th>
  5. <th><?php echo _('Name'); ?></th>
  6. <th><?php echo _('E-mail'); ?></th>
  7. <th><?php echo _('E-mail Subject'); ?></th>
  8. <th class="text-center"><?php echo _('Sent'); ?></th>
  9. <th class="text-center"><?php echo _('E-mail opened'); ?></th>
  10. <th class="text-right"><?php echo _('Opened (GMT)'); ?></th>
  11. <th class="text-right"><?php echo _('Sent (GMT)'); ?></th>
  12. <th width="1%"></th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. <?php foreach($this->view->trackers as $tracker): ?>
  17. <tr>
  18. <td><?php echo $tracker['surname']; ?></td>
  19. <td><?php echo $tracker['name']; ?></td>
  20. <td><?php echo $tracker['mail_to']; ?></td>
  21. <td><?php echo $tracker['mail_subject']; ?></td>
  22. <td class="text-center"><?php echo $this->helper->setYesNo($tracker['request_result']); ?></td>
  23. <td class="text-center"><?php echo $this->helper->setYesNo($tracker['mail_opened']); ?></td>
  24. <td class="text-right"><?php echo $this->helper->getDateString($tracker['mail_opened_at']); ?></td>
  25. <td class="text-right"><?php echo $this->helper->getDateString($tracker['created_at']); ?></td>
  26. <td><button type="button" class="btn btn-outline-dark btn-sm"><span class="icon-eye"></span></button></td>
  27. </tr>
  28. <?php endforeach; ?>
  29. </tbody>
  30. </table>