*Add the user add, edit, and view the details of the page without the

*date of hire display
This commit is contained in:
JackWuLieHao
2018-03-29 13:42:12 +08:00
parent 34e25dc140
commit 77ed3e4dec
4 changed files with 13 additions and 1 deletions
+4
View File
@@ -34,6 +34,10 @@
<th><?php echo $lang->user->role;?></th>
<td><?php echo html::select('role', $lang->user->roleList, $user->role, "class='form-control'");?></td>
</tr>
<tr>
<th><?php echo $lang->user->join;?></th>
<td><input type="date" name="join" value="<?php echo $user->join;?>" class="form-control"></td>
</tr>
<tr>
<th><?php echo $lang->group->priv;?></th>
<td colspan='3'><?php echo html::select('groups[]', $groups, $userGroups, 'size=3 multiple=multiple class="form-control chosen"');?></td>