<?php $locales  = Alfred_Hod::locales(); ?>
<tr class="<?php echo $this->cycle( array( 'odd', 'even' ) )->next(); ?>">
    <td><?php echo $this->entry->id; ?></td>
    <td><?php echo $this->entry->name; ?></td>
 
  <td><?php echo $this->entry->status; ?></td>
    <td class="actions">
        <a href="<?php echo $this->url( array( 'action' => 'save', 'id' => $this->entry->id ) ); ?>" class="btn ui-state-default ui-corner-all">
            <span class="ui-icon ui-icon-wrench"></span>
            <?php echo $this->translate( '#edit#' ); ?>
        </a>

        <a href="<?php echo $this->url( array( 'action' => 'delete', 'id' => $this->entry->id ) ); ?>" class="btn ui-state-default ui-corner-all">
            <span class="ui-icon ui-icon-trash"></span>
            <?php echo $this->translate( '#delete#' ); ?>
        </a>
        <a href="<?php echo $this->url( array( 'action' => 'duplicate', 'oldid' => $this->entry->id ) ); ?>" class="btn ui-state-default ui-corner-all">
            <span class="ui-icon ui-icon-plusthick"></span>
            <?php echo $this->translate( '#duplicate#' ); ?>
        </a>
        <a href="<?php echo $this->url( array( 'action' => 'exportreponse', 'id' => $this->entry->id , 'format'=>'xls' ) ); ?>" class="btn ui-state-default ui-corner-all">
            <span class="ui-icon ui-icon-wrench"></span>
            <?php echo $this->translate( '#exportreponse#' ); ?>
        </a>
    </td>
</tr>

