foreach ($this->columns as $key => $label): ?>
$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) ?>
|
endforeach ?>
endforeach; ?>