* ajusted views.
* changed css names.
This commit is contained in:
@@ -16,17 +16,17 @@
|
||||
<caption><?php echo $lang->tree->edit;?></caption>
|
||||
<?php $hidden = ($type != 'story' and $module->type == 'story');?>
|
||||
<tr <?php if($hidden) echo "style='display:none'";?>>
|
||||
<th class='rowhead'><?php echo $lang->tree->parent;?></th>
|
||||
<td><?php echo html::select('parent', $optionMenu, $module->parent, "class='select-1'");?></td>
|
||||
<th><?php echo $lang->tree->parent;?></th>
|
||||
<td><?php echo html::select('parent', $optionMenu, $module->parent, "class='form-control'");?></td>
|
||||
</tr>
|
||||
<tr <?php if($hidden) echo "style='display:none'";?>>
|
||||
<th class='rowhead'><?php echo $lang->tree->name;?></th>
|
||||
<th><?php echo $lang->tree->name;?></th>
|
||||
<td><?php echo html::input('name', $module->name, "class='form-control'");?></td>
|
||||
</tr>
|
||||
<?php if($type == 'bug'):?>
|
||||
<tr>
|
||||
<th class='rowhead'><?php echo $lang->tree->owner;?></th>
|
||||
<td><?php echo html::select('owner', $users, $module->owner, "class='select-1'", true);?></td>
|
||||
<th><?php echo $lang->tree->owner;?></th>
|
||||
<td><?php echo html::select('owner', $users, $module->owner, "class='form-control'", true);?></td>
|
||||
</tr>
|
||||
<?php endif;?>
|
||||
<tr>
|
||||
|
||||
Reference in New Issue
Block a user