private function _proposalHistory(Patient $p, $group, $sourceIntentionId, $response, $urls = array())
 {
     /*{{{*/
     $response->_proposalHistory_dtos = AuditProposalDto::createListByPatient($p);
     $response->_proposalHistory_group = $group;
     $response->_proposalHistory_sourceIntentionId = $sourceIntentionId;
     $response->_proposalHistory_urls = $this->getUrls4ProposalList($urls);
 }
 <div class="detail-module_splitter">
     <?php 
$dto = AuditProposalDto::createByProposal($proposal);
?>
     <div class="detail-module_title">
         <h3>任务</h3>
     </div>
     <table class="detail-table">
     <tr>
         <th>任务</th>
         <th>组</th>
         <th>状态</th>
         <th>执行人</th>
     </tr>
     <tr>
         <td><?php 
echo $task->id;
?>
</td>
         <td><?php 
echo $task->inspectGroup->fullName();
?>
</td>
         <td><?php 
echo $task->getStatusDesc();
?>
</td>
         <td><?php 
echo $task->inspector->realName;
?>
</td>