<table>
<thead>
<tr>
<? foreach ($this->columns as $key => $label): ?>
<th class="column-<?= $this->escapeAttr($key) ?>">
<?= $this->escape($label) ?>
</th>
<? endforeach ?>
</tr>
</thead>
<tbody>
<? foreach ($this->details as $detail): ?>
<tr class="<?= $detail->conflict ? 'conflict' : '' ?> <?= $this->cycle(array('odd', 'even'))->next() ?>">
<? foreach ($this->columns as $key => $label): ?>
<td class="column-<?= $this->escapeAttr($key) ?>">
<?
$value = $detail->getValue($key);
// present branch action as add and integrate as edit
if ($key == 'action') {
$value = $value == 'branch' ? 'add' : $value;
$value = $value == 'integrate' ? 'edit' : $value;
$value = ucfirst($value);
}
?>
<?= $this->escape($value) ?>
</td>
<? endforeach ?>
</tr>
<? endforeach; ?>
</tbody>
</table>
# |
Change |
User |
Description |
Committed |
|
#1
|
16170 |
perforce_software |
Move Chronicle files to follow new path scheme for branching. |
|
|
//guest/perforce_software/chronicle/application/site/views/scripts/branch/pull-details.partial.phtml |
#1
|
8972 |
Matt Attaway |
Initial add of the Chronicle source code |
|
|