log.php 927 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php IMPORT::view('header'); ?>
  2. <div class="widget-box">
  3. <div class="widget-title"> <span class="icon"> <i class="icon-align-justify"></i> </span>
  4. <h5>Loglar</h5>
  5. </div>
  6. <div class="widget-content nopadding">
  7. <table class="table table-bordered table-striped">
  8. <thead>
  9. <tr>
  10. <th width="120">Tarih</th>
  11. <th>Log</th>
  12. <th>Bölüm</th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. <?php foreach ($log1 as $key ): ?>
  17. <tr>
  18. <td><?php echo Yfunc::tcevir($key->date); ?></td>
  19. <td><?php echo $key->log; ?></td>
  20. <td><?php echo $key->bolum; ?></td>
  21. </tr>
  22. <?php endforeach ?>
  23. </tbody>
  24. </table>
  25. </div>
  26. </div>
  27. <?php Import::view('footer'); ?>