Extend project and trial management
This commit is contained in:
39
application/views/projects/list.php
Normal file
39
application/views/projects/list.php
Normal file
@@ -0,0 +1,39 @@
|
||||
<?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'] . '?active_project=' . $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');?>
|
||||
Reference in New Issue
Block a user