phpci/PHPCI/View/Index.phtml
2013-05-03 16:02:53 +01:00

27 lines
689 B
PHTML

<div class="row">
<div class="span3">
<ul>
<?php foreach($projects as $project): ?>
<li><a href="/project/view/<?= $project->getId(); ?>"><?= $project->getTitle(); ?></a></li>
<?php endforeach; ?>
</ul>
</div>
<div class="span9">
<table width="100%" class="table-striped table-bordered">
<tr>
<th>Project</th>
<th>Commit</th>
<th>Branch</th>
<th>Status</th>
</tr>
<?php foreach($builds as $build): ?>
<tr>
<td><?= $build->getProject()->getTitle(); ?></th>
<td><?= $build->getCommitId(); ?></th>
<td><?= $build->getBranch(); ?></th>
<td><?= $build->getStatus(); ?></th>
</tr>
<?php endforeach; ?>
</table>
</div>
</div>