?>
                          <tr>
                              <td><?php 
        echo CHtml::image('images/user.png', $account_id, array('width' => '40'));
        ?>
 [Name Account]</td>
                              <td><?php 
        echo CHtml::textField('trp-start-' . $i, date('d-m-Y', strtotime($resource_plan->trp_start)), array('class' => 'span1 date'));
        ?>
</td>
                              <td><?php 
        echo CHtml::textField('trp-end-' . $i, date('d-m-Y', strtotime($resource_plan->trp_end)), array('class' => 'span1 date'));
        ?>
</td>
                              <td><?php 
        echo CHtml::dropDownList('trp-work-load-' . $i, $resource_plan->trp_work_load, TaskResourcePlan::getDataWorkLoad(), array('class' => 'span1'));
        ?>
</td>
                              <td>
                                  <?php 
        echo CHtml::textField('trp-effort-' . $i, $resource_plan->trp_effort, array('class' => 'span1'));
        ?>
                                  <?php 
        echo CHtml::hiddenField('trp_id_' . $i, $resource_plan->trp_id, array('class' => 'span1'));
        ?>
                              </td>
                          </tr>
                              <?php 
    }
}
?>