%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
<div class="main-wapper-inner">
<div class="top-menus">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<h3><?php echo $title;?></h3>
</div><!-- /input-group -->
</div>
</div><!-- /.col-lg-6 -->
</div>
<div class="home-inners">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<?php
if($this->session->flashdata('message')){
echo $this->session->flashdata('message');
}
?>
<div id="message"></div>
<form method="post" action="<?php echo site_url('qbank/insert_level/');?>">
<table class="table table-bordered">
<tr>
<th><?php echo $this->lang->line('level_name');?></th>
<th><?php echo $this->lang->line('action');?> </th>
</tr>
<?php
if(count($level_list)==0){
?>
<tr>
<td colspan="3"><?php echo $this->lang->line('no_record_found');?></td>
</tr>
<?php
}
foreach($level_list as $key => $val){
?>
<tr>
<td><input type="text" class="form-control" value="<?php echo $val['level_name'];?>" onBlur="updatelevel(this.value,'<?php echo $val['lid'];?>');" ></td>
<td>
<a href="javascript:remove_entry('qbank/remove_level/<?php echo $val['lid'];?>');"><img src="<?php echo base_url('images/cross.png');?>"></a>
</td>
</tr>
<?php
}
?>
<tr>
<td>
<input type="text" class="form-control" name="level_name" value="" placeholder="<?php echo $this->lang->line('level_name');?>" required ></td>
<td>
<button class="btn btn-default button5" type="submit"><?php echo $this->lang->line('add_new');?></button>
</td>
</tr>
</table>
</form>
</div>
</div>
</div>
</div>
</div>