+ add type field to task table.

This commit is contained in:
wangchunsheng
2009-12-28 06:07:42 +00:00
parent 9dd109243a
commit 0adb00be09
4 changed files with 21 additions and 0 deletions
+4
View File
@@ -59,6 +59,10 @@
<th class='rowhead'><?php echo $lang->task->left;?></th>
<td><input type='text' name='left' value='<?php echo $task->left;?>' class='text-3' /></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->task->type;?></th>
<td><?php echo html::select('type', $lang->task->typeList, $task->type, 'class=select-3');?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->task->status;?></th>
<td><?php echo html::select('status', (array)$lang->task->statusList, $task->status, 'class=select-3');?></td>