<?php if ($this->tableless): ?>

  <div class="<?php echo $this->prefix; ?><?php if ($this->class) echo ' ' . $this->class; ?>">
    <?php $this->block('label'); ?>
    <?php $this->endblock(); ?>

    <?php $this->block('field'); ?>
    <?php $this->endblock(); ?>
  </div>

  <div class="<?php echo $this->prefix; ?> confirm<?php if ($this->class) echo ' ' . $this->class; ?>">
    <?php $this->block('label2'); ?>
    <?php $this->endblock(); ?>

    <?php $this->block('field2'); ?>
    <?php $this->endblock(); ?>
  </div>

<?php else: ?>

  <tr class="<?php echo $this->rowClass; ?>">
    <td class="col_0 col_first">
      <?php $this->block('label'); ?>
        &nbsp;
      <?php $this->endblock(); ?>
    </td>
    <td class="col_1 col_last">
      <?php $this->block('field'); ?>
        &nbsp;
      <?php $this->endblock(); ?>
    </td>
  </tr>
  <tr class="<?php echo $this->rowClassConfirm; ?>">
    <td class="col_0 col_first">
      <?php $this->block('label2'); ?>
        &nbsp;
      <?php $this->endblock(); ?>
    </td>
    <td class="col_1 col_last">
      <?php $this->block('field2'); ?>
        &nbsp;
      <?php $this->endblock(); ?>
    </td>
  </tr>

<?php endif; ?>