Files
EasySoft-ZenTaoPMS/module/task/view/m.assignto.html.php
Catouse ad3a1c29b8 * ajusted views.
* changed css names.
2014-03-27 14:40:55 +08:00

30 lines
1.1 KiB
PHP

<?php include '../../common/view/m.header.html.php';?>
</div>
<form class='form-condensed' method='post' target='hiddenwin'>
<h3><?php echo $lang->task->assignTo . $this->lang->colon . $task->name;?></h3>
<table class='table-1'>
<tr>
<td class="w-70px"><?php echo $lang->task->assignedTo;?></td>
<td><?php echo html::select('assignedTo', $users, $task->openedBy);?>
</tr>
<tr>
<td><?php echo $lang->task->left;?></td>
<td><?php echo html::input('left', $task->left);?></td>
</tr>
<tr>
<td><?php echo $lang->comment;?></td>
<td><?php echo html::textarea('comment', '', "data-mini='true'");?></td>
</tr>
<tr class='text-center'>
<td colspan="2">
<?php
echo html::submitButton('', 'data-inline="true" data-theme="b"');
echo html::linkButton($lang->goback, $this->createLink('task', 'view', "taskID=$task->id"), 'self', "data-inline='true'");
?>
</td>
</tr>
</table>
</form>
<?php include '../../common/view/m.action.html.php';?>
<?php include '../../common/view/m.footer.html.php';?>