* my-todo Priority and name plus title;

* user-edit     Adjust the location of the entry date
* user-profile  If the entry date is empty, do not display.
This commit is contained in:
JackWuLieHao
2018-04-03 15:05:20 +08:00
parent 88a06cc0e0
commit 6dcfb832f0
4 changed files with 11 additions and 10 deletions
+3 -5
View File
@@ -26,7 +26,9 @@
<caption class='text-left text-muted'><?php echo $lang->user->basicInfo;?></caption>
<tr>
<th class='w-90px'><?php echo $lang->user->realname;?></th>
<td class='w-p40'><?php echo html::input('realname', $user->realname, "class='form-control' autocomplete='off'");?></td><td></td><td></td>
<td class='w-p40'><?php echo html::input('realname', $user->realname, "class='form-control' autocomplete='off'");?></td>
<th class='w-90px'><?php echo $lang->user->join;?></th>
<td class='w-p40'><?php echo html::input('join', $user->join, "class='form-control form-date'");?></td>
</tr>
<tr>
<th class='w-90px'><?php echo $lang->user->dept;?></th>
@@ -34,10 +36,6 @@
<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><?php echo html::input('join', $user->join, "class='form-control form-date'");?></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>