uye.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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>Üyeler</h5>
  5. <div class="pull-right" style="margin:5px;"><a href="/yonetim/uye/yeni "><button>YENİ uye</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>Üyelik tarihi</th>
  12. <th>Üye İsmi</th>
  13. <th>Üye rumuz</th>
  14. <th>Üye mail</th>
  15. <th>Üye telefon</th>
  16. <th width="80">İşlemler</th>
  17. </tr>
  18. </thead>
  19. <tbody>
  20. <?php foreach ($uyelist as $key ) { ?>
  21. <tr>
  22. <td><?php echo yFunc::tcevir($key->kayit_tarihi); ?></td>
  23. <td><?php echo $key->isim; ?></td>
  24. <td><?php echo $key->rumuz; ?></td>
  25. <td><?php echo $key->mail; ?></td>
  26. <td><?php echo $key->telefon; ?> </td>
  27. <td class="islemler" style="text-align: center;">
  28. <a href="/yonetim/uye/duzenle/<?php echo $key->kullanici_id; ?>"><i class="icon-pencil"></i></a>
  29. <a href="/yonetim/uye/sil/<?php echo $key->kullanici_id; ?>"><i class="icon-remove"></i></a>
  30. </td>
  31. </tr>
  32. <?php } ?>
  33. </tbody>
  34. </table>
  35. </div>
  36. </div>
  37. <?php Import::view('footer'); ?>