| 12345678910111213141516171819202122232425262728293031 |
- <table class="table table-hover">
- <thead class="thead-light">
- <tr>
- <th><?php echo _('Surname'); ?></th>
- <th><?php echo _('Name'); ?></th>
- <th><?php echo _('E-mail'); ?></th>
- <th><?php echo _('E-mail Subject'); ?></th>
- <th class="text-center"><?php echo _('Sent'); ?></th>
- <th class="text-center"><?php echo _('E-mail opened'); ?></th>
- <th class="text-right"><?php echo _('Opened (GMT)'); ?></th>
- <th class="text-right"><?php echo _('Sent (GMT)'); ?></th>
- <th width="1%"></th>
- </tr>
- </thead>
-
- <tbody>
- <?php foreach($this->view->trackers as $tracker): ?>
- <tr>
- <td><?php echo $tracker['surname']; ?></td>
- <td><?php echo $tracker['name']; ?></td>
- <td><?php echo $tracker['mail_to']; ?></td>
- <td><?php echo $tracker['mail_subject']; ?></td>
- <td class="text-center"><?php echo $this->helper->setYesNo($tracker['request_result']); ?></td>
- <td class="text-center"><?php echo $this->helper->setYesNo($tracker['mail_opened']); ?></td>
- <td class="text-right"><?php echo $this->helper->getDateString($tracker['mail_opened_at']); ?></td>
- <td class="text-right"><?php echo $this->helper->getDateString($tracker['created_at']); ?></td>
- <td><button type="button" class="btn btn-outline-dark btn-sm"><span class="icon-eye"></span></button></td>
- </tr>
- <?php endforeach; ?>
- </tbody>
- </table>
|