* adjust the code.

This commit is contained in:
chencongzhi520@gmail.com
2013-07-06 03:00:01 +00:00
parent 8386fa93a7
commit bcf35c4b7b
20 changed files with 84 additions and 86 deletions
+9 -4
View File
@@ -2,22 +2,27 @@
</div>
<form method='post' target='hiddenwin' onsubmit='return checkLeft();'>
<h3><?php echo $lang->task->start . $this->lang->colon . $task->name;?></h3>
<table class='table-1'>
<tr>
<td class='w-70px'><?php echo $lang->task->consumed;?></td>
<td><?php echo html::input('consumed', $task->consumed);?></td>
</tr>
<tr>
<td class='w-70px'><?php echo $lang->task->left;?></td>
<td><?php echo $lang->task->left;?></td>
<td><?php echo html::input('left', $task->left);?></td>
</tr>
<tr>
<td class='w-70px'><?php echo $lang->comment;?></td>
<td><?php echo $lang->comment;?></td>
<td><?php echo html::textarea('comment', '', "data-mini='true'");?></td>
</tr>
<tr class="a-center">
<td colspan="2"><?php echo html::submitButton('', 'data-inline="true" data-theme="b"') . html::backButton("data-inline='true'") . html::hidden('realStarted', helper::today());?></td>
<td colspan="2">
<?php
echo html::submitButton('', 'data-inline="true" data-theme="b"');
echo html::backButton("data-inline='true'");
echo html::hidden('realStarted', helper::today());
?>
</td>
</tr>
</table>
</form>