* Display the project type on the edit page of the project module.

This commit is contained in:
liugang
2022-09-15 13:05:14 +08:00
parent 5459e21d2e
commit 042a9a97c3
+7
View File
@@ -74,6 +74,13 @@
<td><?php echo html::input('code', $project->code, "class='form-control' required");?></td>
</tr>
<?php endif;?>
<tr>
<th><?php echo $lang->project->type;?></th>
<td>
<?php echo zget($lang->project->projectTypeList, $project->hasProduct);?>
<?php echo html::hidden('hasProduct', $project->hasProduct);?>
</td>
</tr>
<tr>
<th><?php echo $lang->project->PM;?></th>
<td><?php echo html::select('PM', $PMUsers, $project->PM, "class='form-control chosen'" . (strpos($requiredFields, 'PM') !== false ? ' required' : ''));?></td>