Files
scattport-web/application/views/project/detail.php
2011-08-11 03:22:55 +02:00

94 lines
2.5 KiB
PHP

<?php $this->load->view('header'); ?>
<div id="content">
<div class="title">
<h2><?= _('Project details') ?></h2>
</div>
<div class="box">
<h3><?= _('Description') ?></h3>
<div class="editInPlace"><?=nl2br($project['description']);?></div>
<p></p>
<h3><?= _('Trials') ?></h3>
<table class="tableList">
<thead>
<tr>
<th scope="col"><?= _('Trial') ?></th>
<th scope="col"><?= _('Jobs') ?></th>
<th scope="col"><?= _('Actions') ?></th>
</tr>
</thead>
<tbody>
<?
if(count($trials) > 0):
foreach($trials as $trial):
?>
<tr>
<td><a href="<?=site_url('trials/'.$trial['id'])?>"title="<?= sprintf(_('Show trial &quot;%s&quot'), $trial['name'])?>"><?=$trial['name']?></a></td>
<td><span class="active"><?= _('Completed') ?></span></td>
<td>
<a href="<?=site_url('trials/results/'.$trial['id'])?>" title="<?= sprintf(_('Show results for the trial &quot;%s&quot'), $trial['name'])?>"><?= _('Show results') ?></a> |
<a href="<?=site_url('trials/edit/'.$trial['id'])?>" title="<?= sprintf(_('Edit trial &quot;%s&quot;'), $trial['name']) ?>"><?= _('Edit') ?></a> |
<a href="<?=site_url('trials/delete/'.$trial['id'])?>" title="<?= sprintf(_('Delete trial &quot;%s&quot;'), $trial['name']) ?>"><?= _('Delete') ?></a></td>
</tr>
<?
endforeach;
else:
?>
<tr>
<td colspan="3"><?= _('No trials available.') ?></td>
</tr>
<?
endif;
?>
</tbody>
</table>
<p><a class="button add" href="<?=site_url('trials/create/'.$project['id'])?>"><?= _('Create a new trial') ?></a>
</div>
<div class="title">
<h2><?= _('Recent jobs') ?></h2>
</div>
<div class="box">
<table class="tableList">
<thead>
<tr>
<th scope="col"><?= _('Trial') ?></th>
<th scope="col"><?= _('Finished') ?></th>
<th scope="col"><?= _('Actions') ?></th>
</tr>
</thead>
<tbody>
<?
if(count($jobsDone) > 0):
foreach($jobsDone as $job):
?>
<tr>
<td>Versuchsname</td>
<td>Heute, 09:32</td>
<td>
<a href="<?=site_url('trials/results/'.$trial['id'])?>" title="<?= sprintf(_('Show results for the trial &quot;%s&quot'), $trial['name'])?>"><?= _('Show results') ?></a> |
<a href="<?=site_url('trials/edit/'.$trial['id'])?>" title="<?= sprintf(_('Edit trial &quot;%s&quot;'), $trial['name']) ?>"><?= _('Edit') ?></td>
</tr>
<?
endforeach;
else:
?>
<tr>
<td colspan="3"><?= _('No jobs found.') ?></td>
</tr>
<?
endif;
?>
</tbody>
</table>
</div>
</div>
<?php $this->load->view('footer'); ?>