40 lines
1007 B
PHP
40 lines
1007 B
PHP
<?php $this->load->view('header');?>
|
|
|
|
<div id="content">
|
|
|
|
<div class="title">
|
|
<h2><?= _('Project overview') ?></h2>
|
|
</div>
|
|
|
|
<div class="box">
|
|
<table class="tableList paginated sortable">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col"><?= _('Project') ?></th>
|
|
<th scope="col"><?= _('Owner') ?></th>
|
|
<th scope="col"><?= _('Jobs') ?></th>
|
|
<th scope="col"><?= _('Actions') ?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
foreach($projects as $project):
|
|
?>
|
|
<tr>
|
|
<td><a href="<?=site_url('projects/detail/' . $project['id'])?>"><abbr title="<?=$project['description']?>"><?=$project['name']?></abbr></a></td>
|
|
<td><?=$project['firstname'] . " " . $project['lastname']?></td>
|
|
<td><span class="active"><?= _('Successfully finished') ?></span></td>
|
|
<td><a href="#"><?= _('Show results') ?></a> | <?=anchor('projects/delete/' . $project['id'], _('Delete'));?>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
endforeach;
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php $this->load->view('footer');?>
|