<tr class="<?php echo $this->cycle( array( 'odd', 'even' ) )->next(); ?>">
	<td><?= $this->entry->translation()->label; ?></td>		   
		  
	<td class="actions">
		<span class="btn-group">			
			<a href="<?php echo $this->url( array( 'action' => 'save', 'id' => $this->entry->id ) ); ?>" class="btn btn-default" title="<?php echo $this->translate( '#edit#' ); ?>">
				<span class="fa fa-pencil" ></span>
			</a>

			<a href="<?php echo $this->url( array( 'action' => 'delete', 'id' => $this->entry->id ) ); ?>" class="btn btn-danger" title="<?php echo $this->translate( '#delete#' ); ?>" >
				<span class="fa fa-trash-o" ></span>
			</a>
		</span>
	</td>
</tr>