Preview: academic_syllabus.php
Size: 2.50 KB
/home/jambtst2015/public_html/app/application/views/backend/teacher/academic_syllabus.php
<hr />
<a href="javascript:;" onclick="showAjaxModal('<?php echo base_url();?>index.php?modal/popup/academic_syllabus_add/');"
class="btn btn-primary pull-right btn-raised">
<i class="entypo-plus-circled"></i>
<?php echo get_phrase('add_academic_syllabus');?>
</a>
<br><br><br>
<div class="row">
<div class="col-md-12">
<div class="tabs-vertical-env">
<ul class="nav tabs-vertical">
<?php
$classes = $this->db->get('class')->result_array();
foreach ($classes as $row):
?>
<li class="<?php if ($row['class_id'] == $class_id) echo 'active';?>">
<a href="<?php echo base_url();?>index.php?teacher/academic_syllabus/<?php echo $row['class_id'];?>">
<i class="entypo-dot"></i>
<?php echo get_phrase('class');?> <?php echo $row['name'];?>
</a>
</li>
<?php endforeach;?>
</ul>
<div class="tab-content">
<div class="tab-pane active">
<table class="table table-bordered responsive">
<thead>
<tr>
<th>#</th>
<th><?php echo get_phrase('title');?></th>
<th><?php echo get_phrase('description');?></th>
<th><?php echo get_phrase('uploader');?></th>
<th><?php echo get_phrase('date');?></th>
<th><?php echo get_phrase('file');?></th>
<th></th>
</tr>
</thead>
<tbody>
<?php
$count = 1;
$syllabus = $this->db->get_where('academic_syllabus' , array(
'class_id' => $class_id , 'year' => $running_year
))->result_array();
foreach ($syllabus as $row):
?>
<tr>
<td><?php echo $count++;?></td>
<td><?php echo $row['title'];?></td>
<td><?php echo $row['description'];?></td>
<td>
<?php
echo $this->db->get_where($row['uploader_type'] , array(
$row['uploader_type'].'_id' => $row['uploader_id']
))->row()->name;
?>
</td>
<td><?php echo date("d/m/Y" , $row['timestamp']);?></td>
<td>
<?php echo substr($row['file_name'], 0, 20);?><?php if(strlen($row['file_name']) > 20) echo '...';?>
</td>
<td align="center">
<a class="btn btn-default btn-xs"
href="<?php echo base_url();?>index.php?teacher/download_academic_syllabus/<?php echo $row['academic_syllabus_code'];?>">
<i class="entypo-download"></i> <?php echo get_phrase('download');?>
</a>
</td>
</tr>
<?php endforeach;?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
Directory Contents
Dirs: 0 × Files: 34