
        <table class="table table-striped table-bordered table-condensed">
            <thead>
            	<tr>
                    <td colspan="9">
                        <span class="float-right">
                            <a href="<?php echo $this->url( array( 'action' => 'save' ) ); ?>" class="btn btn-primary">
                                <i class="fa fa-plus"></i>
                                <?php echo $this->translate( '#create#' ); ?>
                            </a>
                        </span>

                        <?php echo $this->paginationControl( $this->paginator ); ?>
                    </td>
                </tr>
                <tr>
                    <th width="60"><?php echo $this->translate( '#id#' ); ?></th>
                    <th><?php echo $this->translate( '#title#' ); ?></th>
                    <th><?php echo $this->translate( '#locale#' ); ?></th>
                    <th><?php echo $this->translate( '#scope#' ); ?></th>
                    <th><?php echo $this->translate( '#pubdate#' ); ?></th>
                    <th><?php echo $this->translate( '#datestart#' ); ?></th>
                    <th><?php echo $this->translate( '#status#' ); ?></th>
                    <th><?php echo $this->translate( '#author#' ); ?></th>
                    <th></th>
                </tr>
                <form id="searchForm">
                <tr class="search-row">
                	<td><?= $this->formText('id',$this->search['id'],array('class'=>'span1'))?></td>
                	<td><?= $this->formText('title',$this->search['title'],array('style'=>'width:96%'))?></td>
                	<td><?= $this->formSelect('locale',$this->search['locale'],array('style'=>'width:96%'), array( '' => '' ) + Alfred_Hod::locales() )?></td>
                    <td><?= $this->formSelect('scope',$this->search['scope'],array('style'=>'width:96%'), array( '' => '' ) + Events_Model_Event_Table::$scopes )?></td>
                    <td></td>
                	<td></td>
                	<td><?= $this->formSelect('status',$this->search['status'],array('style'=>'width:96%'), array( '' => '' ) + Events_Model_Event_Table::$statuses )?></td>
                	<td><?= $this->formSelect('author',$this->search['author'],array('style'=>'width:96%'), array( '' => '' ) + $this->authors )?></td>
                	<td><button class="btn btn-default" title="<?= $this->translate('#search#')?>"><i class="fa fa-search"></i></button></td>
                </tr>
                </form>
            </thead>

            <tbody>
    <?php   if ( count( $this->paginator ) ) {
                foreach ( $this->paginator as $entry ) {
                    echo $this->partial( 'admin/partials/events.phtml', array( 'entry' => $entry ) );
                }
    		} else { ?>
        	<tr><td colspan="9"><?php echo $this->translate( '#this list is empty#' ); ?></td></tr>
    <?php   } ?>
            </tbody>

            <tfoot>
                <tr>
                    <td colspan="9">
                        <span class="float-right">
                            <span class="float-right">
                            <a href="<?php echo $this->url( array( 'action' => 'save' ) ); ?>" class="btn btn-primary">
                                <i class="fa fa-plus"></i>
                                <?php echo $this->translate( '#create#' ); ?>
                            </a>
                        </span>
                        </span>

                        <?php echo $this->paginationControl( $this->paginator ); ?>
                    </td>
                </tr>
            </tfoot>
        </table>
