build link

This commit is contained in:
Gabriel Baker 2013-06-05 06:49:49 +01:00
parent aef90eefa9
commit fa721fe0ff
2 changed files with 3 additions and 3 deletions

View file

@ -48,8 +48,8 @@
<th>Project</th>
<th>Last Success</th>
<th>Last Failure</th>
<th>Success/Failed Builds</th>
<th>Total Builds</th>
<th>Success/Failures</th>
<th style="width: 1%"></th>
</tr>
</thead>
<tbody>

View file

@ -66,6 +66,6 @@ foreach($projects as $projectId => $project):
<td><?= empty($project['lastsuccess']) ? 'Never' :$project['lastsuccess']->format("Y-m-d H:i:s") ?></td>
<td><?= empty($project['lastfailure']) ? 'Never' :$project['lastfailure']->format("Y-m-d H:i:s") ?></td>
<td><?= $project['successes'] ?>/<?= $project['failures'] ?></td>
<td><?= $project['count'] ?></td>
<td><a href='<?= PHPCI_URL ?>project/build/<?= $projectId ?>'>build</a></td>
</tr>
<?php endforeach; ?>