index.php 927 B

1234567891011121314151617181920212223242526272829303132333435
  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">
  9. <h3 class="box-title">Responsive Hover Table</h3>
  10. <form action="/logger/search" method="POST">
  11. <div class="box-tools">
  12. <div class="input-group" style="width: 150px;">
  13. <input type="text" name="kw" class="form-control input-sm pull-right" placeholder="Search" value="social">
  14. <div class="input-group-btn">
  15. <input class="btn btn-sm btn-default" type="submit" value="搜索"><i class="fa fa-search"></i></input>
  16. </div>
  17. </div>
  18. </div>
  19. </form>
  20. </div><!-- /.box-header -->
  21. <div class="box-body table-responsive no-padding">
  22. <table class="table table-hover">
  23. <tbody><tr>
  24. <th>错误域</th>
  25. <th>日志细节</th>
  26. <th>时间</th>
  27. <!-- <th>debug</th>-->
  28. <th>级别</th>
  29. </tr>
  30. </tbody></table>
  31. </div><!-- /.box-body -->
  32. </div>