index.php 781 B

1234567891011121314151617181920212223
  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>KATEGORİLER</h5>
  5. <div class="pull-right" style="margin:5px;"><a href="<?php echo baseUrl(); ?>yonetim/kategori/yeni"><button>YENİ KATEGORİ</button> </a></div>
  6. </div>
  7. <div class="widget-content nopadding">
  8. <table class="table table-bordered table-striped">
  9. <thead>
  10. <tr>
  11. <th>Kategoriler</th>
  12. <th width="80">İşlemler</th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. <?php echo yFunc::KategoriTablosu('kategori'); ?>
  17. </tbody>
  18. </table>
  19. </div>
  20. </div>
  21. <?php Import::view('footer'); ?>