<div class="hastable">

    <table class="listing">
        <thead>
        	<tr>
                <td colspan="9">
                    <span class="float-right">
                        <a href="<?php echo $this->url( array( 	
                        										'action' => 'save' ,
      															'form_id' => $this->form_id )
																,'formbuilder-fields-admin', true
      												    ); ?>" class="btn ui-state-default ui-corner-all">
                            <span class="ui-icon ui-icon-plusthick"></span>
                            <?php echo $this->translate( '#create#' ); ?>
                        </a>
                    </span>

                    <?php echo $this->paginationControl( $this->paginator ); ?>
                </td>
            </tr>
            <tr>
                <th><?php echo $this->translate( '#id#' ); ?></th>
                <th><?php echo $this->translate( '#name#' ); ?></th>
                <th><?php echo $this->translate( '#required#' ); ?></th>
                <th><?php echo $this->translate( '#position#' ); ?></th>
                 <th><?php echo $this->translate( '#status#' ); ?></th>
                <th></th>
            </tr>

        <tbody>
<?php   if ( count( $this->paginator ) ) {
            foreach ( $this->paginator as $entry ) {
                echo $this->partial( 'fields-admin/partials/items.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">
                        <a href="<?php echo $this->url( array(  'action' => 'save' ,
      															'form_id' => $this->form_id )
																,'formbuilder-fields-admin', true
      												    ); ?>" class="btn ui-state-default ui-corner-all">
                            <span class="ui-icon ui-icon-plusthick"></span>
                            <?php echo $this->translate( '#create#' ); ?>
                        </a>
                    </span>

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

