Advertisement
Guest User

Untitled

a guest
Dec 14th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. <div class="row">
  2. <div class="col-md-12">
  3.  
  4. <?php echo show_alert($this->session->flashdata()); ?>
  5.  
  6. <div class="card">
  7. <div class="card-header">
  8. <i class="nav-icon icon-docs"></i> <?php echo show($title); ?>
  9. <div class="pull-right">
  10. <a href="<?php echo base_url('master/kecamatan/tambah'); ?>" class="btn btn-primary btn-sm"><i class="fa fa-plus"></i> Tambah</a>
  11. </div>
  12. </div>
  13. <div class="card-body">
  14. <div class="row">
  15. <div class="col-md-12">
  16. <div class="table-responsive">
  17. <table class="table table-bordered table-striped table-condensed table-datatable">
  18. <thead>
  19. <tr>
  20. <th style="width: 10px;">No</th>
  21. <th>Nama UPTD</th>
  22. <th>Nama Kecamatan</th>
  23. <th>Keterangan</th>
  24. <th style="width: 10px;">Pilihan</th>
  25. </tr>
  26. </thead>
  27. <tbody>
  28. <?php
  29. $no = 1;
  30. foreach ($list_data as $key => $data) :
  31. ?>
  32. <tr>
  33. <td class="text-center"><?php echo $no++; ?></td>
  34. <td><?php show($data->nama_uptd); ?></td>
  35. <td><?php show($data->nama); ?></td>
  36. <td><?php show($data->keterangan); ?></td>
  37. <td class="text-center">
  38. <div class="dropdown dropleft">
  39. <button class="btn btn-secondary btn-sm" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
  40. <i class="icon-menu"></i>
  41. </button>
  42. <div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
  43. <a class="dropdown-item" href="<?php echo base_url('master/kecamatan/edit/'.$data->id); ?>"><i class="fa fa-edit"></i> Edit</a>
  44. <a class="dropdown-item btn-delete" href="<?php echo base_url('master/kecamatan/hapus/'.$data->id); ?>"><i class="fa fa-trash"></i> Hapus</a>
  45. </div>
  46. </div>
  47. </td>
  48. </tr>
  49. <?php endforeach; ?>
  50. </tbody>
  51. </table>
  52. </div>
  53. </div>
  54. </div>
  55. </div>
  56. </div>
  57. </div>
  58. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement