Files
scattport-web/application/views/projects/list.php
2011-09-20 23:55:57 +02:00

61 lines
1.4 KiB
PHP

<?php $this->load->view('header');?>
<div id="content">
<div class="title">
<h2><?=_('Projects');?></h2>
</div>
<div class="box">
<h3><?=_('List of all your accessible projects');?></h3>
<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['name'] . "\n\n" . $project['description'];?>"><?=$project['mediumname'];?></abbr></a></td>
<td>
<?php
if ($project['owner'] == $this->access->profile()->id):
?>
<?=_('You');?>
<?php
else:
?>
<a href="<?=site_url('users/profile/' . urlencode($project['username']));?>" title="<?=_('Show profile');?>"><?=$project['firstname'] . ' ' . $project['lastname'];?></a>
<?php
endif;
?>
</td>
<td><span class="active"><?=_('Successfully finished');?></span></td>
<td>
<a href="#"><?=_('Show results');?></a>
<?php
if ($project['owner'] == $this->access->profile()->id):
?>
| <?=anchor('projects/delete/' . $project['id'], _('Delete'));?>
<?php
endif;
?>
</td>
</tr>
<?php
endforeach;
?>
</tbody>
</table>
</div>
</div>
<?php $this->load->view('footer');?>