info.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. /**
  3. * @var yii\web\View $this
  4. */
  5. $this->title = 'My Yii Application';
  6. ?>
  7. <div class="box">
  8. <div class="box-header with-border">
  9. <h3 class="box-title">您订阅的日志</h3>
  10. </div><!-- /.box-header -->
  11. <div class="box-body">
  12. <table class="table table-bordered">
  13. <tbody><tr>
  14. <th>topic</th>
  15. <th>计数</th>
  16. <th>操作</th>
  17. </tr>
  18. <?php foreach ($detail as $name => $row) {?>
  19. <tr>
  20. <td><?= $name ?></td>
  21. <td><span class="badge bg-red"><?= $row['error'] ?></span>
  22. <span class="badge bg-yellow"><?= $row['warning'] ?></span>
  23. <span class="badge bg-light-blue"><?= $row['notice'] ?></span>
  24. </td>
  25. <td><span class="badge bg-red">55%</span></td>
  26. </tr>
  27. <?php } ?>
  28. </tbody>
  29. </table>
  30. </div><!-- /.box-body -->
  31. <!-- <div class="box-footer clearfix">-->
  32. <!-- <ul class="pagination pagination-sm no-margin pull-right">-->
  33. <!-- <li><a href="#">«</a></li>-->
  34. <!-- <li><a href="#">1</a></li>-->
  35. <!-- <li><a href="#">2</a></li>-->
  36. <!-- <li><a href="#">3</a></li>-->
  37. <!-- <li><a href="#">»</a></li>-->
  38. <!-- </ul>-->
  39. <!-- </div>-->
  40. </div><!-- /.box -->