<?php $locales  = Alfred_Hod::locales(); ?>
<tr>
    <td><?php echo $this->entry->id; ?></td>

    <td><?php echo $this->entry->title; ?></td>

    <td><?php echo $locales[$this->entry->locale]; ?></td>

    <td><?php echo Events_Model_Event_Table::$scopes[$this->entry->scope]; ?></td>
    <td><?php
    echo $this->entry->date('validFrom')->get(Zend_Date::DATE_SHORT);
     ?></td>
     <td><?php
    echo !empty( $this->entry->dateStart)?$this->entry->date('dateStart')->get(Zend_Date::DATE_SHORT):'';
     ?></td>
    <td><?php echo Events_Model_Event_Table::$statuses[$this->entry->status]; ?></td>

    <td><?php echo !is_null( $this->entry->author ) ? $this->entry->author->name : 'Admin'; ?></td>

    <td class="actions">
        <span class="btn-group">

        <a href="<?php echo $this->url( array( 'action' => 'save', 'id' => $this->entry->id ) ); ?>" class="btn btn-sm btn-default" title="<?php echo $this->translate( '#edit#' ); ?>">
            <i class="fa fa-pencil"></i>

        </a>

         <a href="<?php echo $this->url( array( 'action' => 'duplicate', 'id' => $this->entry->id ) ); ?>" class="btn btn-sm btn-default" title="<?php echo $this->translate( '#duplicate#' ); ?>">
            <i class="fa fa-copy"></i>

        </a>

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

        </a>
        </span>
    </td>
</tr>

<?php //echo $this->partialLoop( 'admin/partials/news.phtml', $this->entry->translations() );