1234567891011121314151617181920212223 |
- <?php IMPORT::view('header'); ?>
- <div class="widget-box">
- <div class="widget-title"> <span class="icon"> <i class="icon-align-justify"></i> </span>
- <h5>KATEGORİLER</h5>
- <div class="pull-right" style="margin:5px;"><a href="<?php echo baseUrl(); ?>yonetim/kategori/yeni"><button>YENİ KATEGORİ</button> </a></div>
- </div>
- <div class="widget-content nopadding">
- <table class="table table-bordered table-striped">
- <thead>
- <tr>
- <th>Kategoriler</th>
- <th width="80">İşlemler</th>
- </tr>
- </thead>
- <tbody>
- <?php echo yFunc::KategoriTablosu('kategori'); ?>
- </tbody>
- </table>
- </div>
- </div>
- <?php Import::view('footer'); ?>
|