<div class="col-sm-9">
    <table class="table table-striped table-bordered table-condensed table-hover" >
        <thead>
            <tr>
                <td colspan="4">
                    <span class="main-actions pull-right">
                        <a href="<?php echo $this->url( array( 'action' => 'save' ) ); ?>" class="btn btn-primary" rel="tooltip"  title="<?php echo $this->translate( '#create#' ); ?>"><span class="fa fa-plus"></span></a>
                        <a href="<?php echo $this->url( array( 'action' => 'trash' ) ); ?>" class="btn btn-default" rel="tooltip"  title="<?php echo $this->translate( '#create#' ); ?>"><span class="fa fa-trash-o"></span></a>

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

            <tr>
                <th><?php echo $this->translate( '#domain#' ); ?></th>
                <th><?php echo $this->translate( '#aliases#' ); ?></th>
                <th><?php echo $this->translate( '#template#' ); ?></th>
                <th width="80">&nbsp;</th>
            </tr>
        </thead>

        <tbody>
<?php
    if ( count( $this->paginator ) ) {
        foreach ( $this->paginator as $item ) { ?>
            <tr class="<?php echo $this->cycle( array( 'odd', 'even' ) )->next(); ?>">
                <td><?php echo $item->domain; ?></td>
                <td><?php echo $item->alias; ?></td>
                <td><?php echo $item->template; ?></td>
                <td class="actions">
                    <a href="<?php echo $this->url( array( 'action' => 'save', 'id' => $item->id ) ); ?>" class="btn btn-default btn-sm" title="<?php echo $this->translate( '#edit#' ); ?>" rel="tooltip"><span class="fa fa-wrench"></span></a>

                    <a href="<?php echo $this->url( array( 'action' => 'delete', 'id' => $item->id ) ); ?>" class="btn btn-sm btn-danger" title="<?php echo $this->translate( '#delete#' ); ?>" rel="tooltip"><span class="fa fa-trash-o"></span></a>
                </td>
            </tr>
<?php   }
    } else{?>
            <tr><td colspan="4"><?php echo $this->translate( '#this list is empty#' ); ?></td></tr>
    <?php } ?>
        </tbody>

        <tfoot>
            <tr>
                <td colspan="4">
                   <span class="main-actions pull-right">
                        <a href="<?php echo $this->url( array( 'action' => 'save' ) ); ?>" class="btn btn-primary" rel="tooltip"  title="<?php echo $this->translate( '#create#' ); ?>"><span class="fa fa-plus"></span></a>
                        <a href="<?php echo $this->url( array( 'action' => 'trash' ) ); ?>" class="btn btn-default " rel="tooltip"  title="<?php echo $this->translate( '#create#' ); ?>"><span class="fa fa-trash-o"></span></a>

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