bbone/application/modules/User/views/user_list.php
suseendhiran17 8a1409984b suseendhiran
2022-12-29 10:35:32 +05:30

88 lines
3.7 KiB
PHP

<div class="col-md-12 col-sm-12 ">
<div class="x_panel">
<div class="x_title">
<h2>User Details </h2>
<ul class="nav navbar-right panel_toolbox">
<a href="<?php echo base_url();?>user/addUser" class="btn btn-sm btn-primary">Add User</a>
<li><a class="collapse-link"><i class="fa fa-chevron-up"></i></a>
</li>
</ul>
<div class="clearfix"></div>
</div>
<div class="x_content">
<div class="row">
<div class="col-sm-12">
<table id="datatable" class="table table-striped table-bordered" width="100%">
<thead>
<tr class="headings">
<th class="column-title">Name </th>
<th class="column-title">Email </th>
<th class="column-title">Mobile </th>
<!-- <th class="column-title">Serial </th>
<th class="column-title">Model </th>
<th class="column-title">Category </th>
<th class="column-title">Status </th> -->
<!-- <th class="column-title">Notes </th>
<th class="column-title">Warranty </th>
<th class="column-title">Order No </th>
<th class="column-title">Purchase Date </th>
<th class="column-title">Supplier </th>
<th class="column-title">Cost </th>
<th class="column-title">Location </th> -->
<th class="column-title" >Action </th>
</tr>
</thead>
<tbody>
<?php foreach ($tableData as $key => $value) { ?>
<tr class="even pointer">
<td class=" "> <?php echo $value->name; ?> </td>
<td class=" "><?php echo $value->email; ?> </td>
<td class=" "><?php echo $value->mobile; ?></td>
<!-- <td class=" "><?php echo $value->serial; ?></td>
<td class=" "><?php echo $value->model; ?></td>
<td class=" "><?php echo $value->category_name; ?></td>
<td class=" "><?php echo $value->status; ?></td> -->
<!--<td class=" "><?php echo $value->notes; ?> </td>
<td class=" "><?php echo $value->warranty; ?> </td>
<td class=" "><?php echo $value->order_no; ?></td>
<td class=" "><?php echo $value->purchase_date; ?></td>
<td class=" "><?php echo $value->supplier_name; ?></td>
<td class=" "><?php echo $value->cost; ?></td>
<td class=" "><?php echo $value->location_name; ?></td> -->
<td style=" text-align: center; font-size: 16px;">
<a href="<?php echo base_url()?>user/editUser/<?php echo md5($value->id);?>" ><i class="fa fa-pencil"></i></a>
&nbsp;
<a href="<?php echo base_url()?>user/deleteAsset/<?php echo md5($value->id);?>" ><i class="fa fa-trash"></i></a>
&nbsp;
</td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<br/>
<div style="display:none" id="sub-value">
</div>