Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

usersNotificationTracker.view.php 1.2KB

1234567891011121314151617181920212223242526272829
  1. <?php echo $this->partial('Layout/nav'); ?>
  2. <div class="container-fluid">
  3. <div class="container-page-wrapper">
  4. <div class="container-page-container">
  5. <div class="row">
  6. <div class="col-lg-6">
  7. <h1><?php echo $this->actionTitle; ?></h1>
  8. <div><a href="<?php echo $this->helper->setHash('notification-tracker/'.time().'/email/1'); ?>" class="badge <?php echo $this->view->notifType == 'email' ? 'badge-primary' : 'badge-light'; ?>">E-mail</a> | <a href="<?php echo $this->helper->setHash('notification-tracker/'.time().'/sms/1'); ?>" class="badge <?php echo $this->view->notifType == 'sms' ? 'badge-primary' : 'badge-light'; ?>">SMS</a></div>
  9. </div>
  10. <div class="col-lg-6 clearfix">
  11. <div class="float-right">
  12. <button type="button" class="btn btn-info btn-refresh-list"><span class="icon-loop2"></span></button>
  13. </div>
  14. </div>
  15. </div>
  16. <hr>
  17. <?php //debug($this->view->queryDebug); ?>
  18. <?php if(is_array($this->view->trackers) && !empty($this->view->trackers)): ?>
  19. <div class="table-overflow">
  20. <?php echo $this->partial('Notification/'.$this->view->notifType); ?>
  21. </div>
  22. <?php echo $this->partial('Layout/pagination'); ?>
  23. <?php else: ?>
  24. <?php endif; ?>
  25. </div>
  26. </div>
  27. </div>