<tr class="<?= $this->partialCounter%2==0?'odd':'even' ?>">
	<td><?= $this->entry->id ?></td>
	<td><?= $this->entry->name ?></td>
	<td><?php 
	   if($this->entry->imageExists()){
	       echo $this->htmlImage($this->entry->getThumbnail(), array('style' =>  'max-height:75px;'));
	   } ?></td>
	 
	<td><?= $this->entry->isGlobal ?></td>
	<td><?= $this->entry->isBlock ?></td>
	<td><?= $this->entry->date('dateAdd')->get(Zend_Date::DATE_MEDIUM); ?></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 action delete">
            <span class="ui-icon ui-icon-trash"></span>
            <?php echo $this->translate( '#delete#' ); ?>
        </a>
    </td>
</tr>