| Server IP : 103.234.187.230 / Your IP : 216.73.216.216 Web Server : Apache System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/adeetieadmin/application/modules/trainings/views/ |
Upload File : |
<div class="container grid-page">
<div class="row">
<?php if($this->session->flashdata()){ ?>
<div class="alert alert-success"><?php echo $this->session->flashdata('message');?></div>
<?php }?>
<div class="col-sm-24">
<div class="zed-page-actions">
<a href="<?php echo base_url();?>trainings/addedit" class="btn btn-primary">+ Add Training</a>
<a href="javascript:void(0)" class="btn btn-danger" id="delete">Delete Training</a>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-24">
<div class="zed-page-table">
<?php
echo form_open(base_url().'trainings/bulk_actions',array('id'=>'bulk_actions_form'));
echo form_hidden('action', '');
?>
<table class="table table-hover zed-data-table">
<thead>
<tr>
<th>#</th>
<th>LOGO</th>
<th>Title</th>
<th>Link</th>
<th></th>
</tr>
</thead>
<tbody>
<?php foreach($details as $value) { ?>
<tr>
<td><label class="zed-checkbox">
<input type="checkbox" value="<?php echo $value->id;?>" name="ids[]"><span></span></td>
<td><a href="<?php echo $value->training_slug;?>"><img src="<?php echo UPLOAD_URL.'/photogallery/'.$value->training_logo?>" class="zed-img"></a></td>
<td><?php echo $value->training_title;?></td>
<td><?php echo $value->training_link;?></td>
<td class="zed-table-settings-td">
<div class="zed-table-settings">
<ul class="list-inline">
<li><a href="<?php echo base_url();?>trainings/addedit/<?php echo $value->id;?>" class="btn btn-default">Edit</a>
</li>
</ul>
</div>
</td>
</tr>
<?php } ?>
</tbody>
</table>
<?php echo form_close();?>
</div>
</div>
</div>
</div>