PageRenderTime 51ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/application/modules/take_baggage/views/main.php

https://bitbucket.org/bo_hmb/bo_hmb
PHP | 121 lines | 113 code | 8 blank | 0 comment | 0 complexity | 1c365636301b3b038491d2093ced49b3 MD5 | raw file
Possible License(s): Apache-2.0, MIT, LGPL-2.1, MPL-2.0-no-copyleft-exception, GPL-2.0
  1. <div class="page-content-wrapper">
  2. <!-- BEGIN CONTENT BODY -->
  3. <div class="page-content">
  4. <!-- BEGIN PAGE HEADER-->
  5. <!-- BEGIN PAGE BAR -->
  6. <div class="page-bar">
  7. <ul class="page-breadcrumb">
  8. <li>
  9. <a href="#">Main Menu</a>
  10. <i class="fa fa-circle"></i>
  11. </li>
  12. <li>
  13. <a href="#">Handling</a>
  14. <i class="fa fa-circle"></i>
  15. </li>
  16. <li>
  17. <a href="#">Take Baggage</a>
  18. </li>
  19. </ul>
  20. </div>
  21. <!-- END PAGE BAR -->
  22. <!-- END PAGE HEADER-->
  23. <div class="row">
  24. <div class="col-md-12">
  25. <br>
  26. <!-- Begin: Demo Datatable 1 -->
  27. <div class="portlet light portlet-fit portlet-datatable bordered">
  28. <div class="portlet-title">
  29. <div class="caption">
  30. <span class="caption-subject font-dark sbold uppercase">Data Take Baggage</span>
  31. </div>
  32. </div>
  33. <div class="portlet-body">
  34. <div class="">
  35. <table class="table table-striped table-bordered table-hover table-checkable table-responsive" id="datatable_ajax">
  36. <thead>
  37. <tr role="row" class="heading">
  38. <th width="5%">No</th>
  39. <th width="1%">Aksi</th>
  40. <!-- <th width="15%">Jenis Travel</th> -->
  41. <th width="15%">Paket</th>
  42. <th width="15%">No. Pendaftaran</th>
  43. <th width="15%">Tanggal Keberangkatan</th>
  44. <th width="10%">No. KTP</th>
  45. <th width="10%">Nama Sesuai Pasport</th>
  46. <th width="15%">Total Biaya</th>
  47. <th width="15%">Status</th>
  48. </tr>
  49. <tr role="row" class="filter">
  50. <td> </td>
  51. <td>
  52. <div class="margin-bottom-5">
  53. <button class="btn btn-sm green btn-outline filter-submit margin-bottom">
  54. <i class="fa fa-search"></i></button>
  55. </div>
  56. <button class="btn btn-sm red btn-outline filter-cancel">
  57. <i class="fa fa-times"></i></button>
  58. </td>
  59. <!-- <td>
  60. <select class="form-control form-filter input-sm"name="jenis_travel">
  61. <option></option>
  62. <option value="UMRAH">UMRAH</option>
  63. <option value="HAJI KHUSUS KUOTA">HAJI KHUSUS KUOTA</option>
  64. <option value="HAJI KHUSUS NON KUOTA">HAJI KHUSUS NON KUOTA</option>
  65. <option value="TOUR/WISATA">TOUR/WISATA</option>
  66. </select>
  67. </td> -->
  68. <td>
  69. <select class="form-control form-filter input-sm" name="nm_paket">
  70. <option value=""></option>
  71. <?php
  72. $packet = Modules::run('packet/get_where', array('paket.active' => '1','paket.kd_cabang'=>$this->kode_cabang))->result();
  73. foreach ($packet as $row) { ?>
  74. <option value="<?php echo $row->nm_paket; ?>"><?php echo $row->nm_paket; ?> | <?php echo $row->nm_jadwal; ?></option>
  75. <?php } ?>
  76. </select>
  77. </td>
  78. <td><input type="text" class="form-control form-filter input-sm" name="no_pendaftaran"> </td>
  79. <td><select name="tgl_keberangkatan" class="form-control form-filter input-sm">
  80. <option value=""></option>
  81. <?php
  82. $schedule= Modules::run('schedule/get_schedule_where', array('active' => '1'))->result();
  83. foreach ($schedule as $row) { ?>
  84. <option value="<?php echo $row->tgl_keberangkatan; ?>"><?php echo $x=date('d-m-Y', strtotime($row->tgl_keberangkatan)); ?></option>
  85. <?php
  86. }
  87. ?>
  88. </select>
  89. </td>
  90. <td><input type="text" class="form-control form-filter input-sm" name="no_ktp"> </td>
  91. <td><input type="text" class="form-control form-filter input-sm" name="nm_lengkap"> </td>
  92. <td></td>
  93. <td>
  94. <!-- <select name="status" class="form-control form-filter input-sm">
  95. <option value=""></option>
  96. <option value="Belum Lunas">Belum Lunas</option>
  97. <option value="Registrasi">Registrasi</option>
  98. <option value="Lunas">Lunas</option>
  99. </select> -->
  100. </td>
  101. </tr>
  102. </thead>
  103. <tbody></tbody>
  104. </table>
  105. </div>
  106. </div>
  107. </div>
  108. <!-- End: Demo Datatable 1 -->
  109. </div>
  110. </div>
  111. </div>
  112. <!-- END CONTENT BODY -->
  113. </div>