<?php $locales  = Alfred_Hod::locales(); ?>
<tr class="<?php echo $this->cycle( array( 'odd', 'even' ) )->next(); ?>">
    <td><?php echo $this->entry->id; ?></td>

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

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

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

    <td class="actions">
        <a href="<?php echo $this->url( array( 'action' => 'save', 'id' => $this->entry->id , 'form_id' => $this->entry->form_id ) , 'formbuilder-fields-admin' , true ); ?>" class="btn ui-state-default ui-corner-all">
            <span class="ui-icon ui-icon-wrench"></span>
            <?php echo $this->translate( '#edit#' ); ?>
        </a>

        <a href="<?php echo $this->url( array( 'action' => 'delete', 'id' => $this->entry->id , 'form_id' => $this->entry->form_id  ) , 'formbuilder-fields-admin' , true ); ?>" class="btn ui-state-default ui-corner-all">
            <span class="ui-icon ui-icon-trash"></span>
            <?php echo $this->translate( '#delete#' ); ?>
        </a>
    </td>
</tr>

