Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627
  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 _('Number'); ?></th>
  7. <th><?php echo _('Message'); ?></th>
  8. <th class="text-center"><?php echo _('Delivered'); ?></th>
  9. <th class="text-right"><?php echo _('Sent (GMT)'); ?></th>
  10. <th width="1%"></th>
  11. </tr>
  12. </thead>
  13. <tbody>
  14. <?php foreach($this->view->trackers as $tracker): ?>
  15. <tr>
  16. <td><?php echo $tracker['surname']; ?></td>
  17. <td><?php echo $tracker['name']; ?></td>
  18. <td><?php echo $tracker['phone_to']; ?></td>
  19. <td><?php echo $tracker['phone_msg']; ?></td>
  20. <td class="text-center"><?php echo $this->helper->setYesNo($tracker['request_result']); ?></td>
  21. <td class="text-right"><?php echo $this->helper->getDateString($tracker['created_at']); ?></td>
  22. <td><button type="button" class="btn btn-outline-dark btn-sm"><span class="icon-eye"></span></button></td>
  23. </tr>
  24. <?php endforeach; ?>
  25. </tbody>
  26. </table>