<div class="col-sm-6">
    <table class="table table-striped table-bordered table-condensed table-hover">
        <thead>
            <tr>
                <th><?php echo $this->translate( '#label#' ); ?></th>
                <th><?php echo $this->translate( '#parent#' ); ?></th>
                <th width="140"></th>
            </tr>
        </thead>

        <tbody>
            <tr class="system">
                <td>Anonymous</td>

                <td></td>

                <td class="actions">
                    <a href="<?php echo $this->url( array( 'action' => 'set-rules', 'label' => 'Anonymous' ) ); ?>" class="btn btn-default" rel="tooltip" title="<?php echo $this->translate( '#rules#' ); ?>">
                        <i class="fa fa-key"></i>
                    </a>
                </td>
            </tr>

<?php   if ( $count = count( $this->paginator ) ) {
            foreach ( $this->paginator as $item ) { ?>
            <tr class="<?php echo $this->cycle( array( 'odd', 'even' ) )->next(); ?>">
                <td><?php echo $item->label; ?></td>

                <td><?php echo $item->parents; ?></td>

                <td class="actions">
                <span class="btn-group">
                    
                    <a href="<?php echo $this->url( array( 'action' => 'set-rules', 'label' => $item->label ) ); ?>" class="btn btn-default" rel="tooltip" title="<?php echo $this->translate( '#rules#' ); ?>">
                        <i class="fa fa-key"></i>
                        
                    </a>

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

                    <a href="<?php echo $this->url( array( 'action' => 'delete', 'label' => $item->label ) ); ?>" class="btn btn-danger" rel="tooltip" title="<?php echo $this->translate( '#delete#' ); ?>">
                        <i class="fa fa-trash-o"></i>
                        
                    </a>
                </span>
                </td>
            </tr>
<?php     }
      } ?>
        </tbody>

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

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