<?php
$id = $this->entry->id;
?>
<tr>
    <td><?= $this->entry->id?></td>
    <td><?= $this->entry->ref?></td>
    <td><?= $this->entry->title?></td>
    <td><?= $this->defaultTypes[ $this->entry->type ]?></td>
    <td><?= $this->defaultStatus[ $this->entry->status ]?></td>
    <td class="actions">
        <a href="<?php echo $this->url( array( 'action' => 'save', 'id' => $id ) ); ?>" class="btn btn-small" title="<?php echo $this->translate( '#edit#' ); ?>"><span class="icon-pencil"></span></a>
        <a href="<?php echo $this->url( array( 'action' => 'delete', 'id' => $id ) ); ?>" class="btn btn-small btn-danger" title="<?php echo $this->translate( '#delete#' ); ?>"><span class="icon-trash"></span></a>
    </td>
</tr>