User_index.html 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <table class="search_table" width="100%">
  2. <tr>
  3. <td>
  4. <form action="{:U('User/index')}" method="get">
  5. <input type="hidden" name="g" value="{$Think.GROUP_NAME}" />
  6. <input type="hidden" name="m" value="{$Think.MODULE_NAME}" />
  7. <input type="hidden" name="a" value="{$Think.ACTION_NAME}" />
  8. {:L('user_select_option')}: <input type="text" name="keyword" class="input-text" value="{$keyword}"/>
  9. <select name="searchtype">
  10. <option value="username" <eq name="searchtype" value="username">selected</eq>>{:L('username')}</option>
  11. <option value="realname" <eq name="searchtype" value="realname">selected</eq>>{:L('realname')}</option>
  12. <option value="id" <eq name="searchtype" value="id">selected</eq>>ID</option>
  13. </select>
  14. <select name="groupid">
  15. <option value="">{:L('user_group')}</option>
  16. <volist name="usergroup" id="row">
  17. <option value="{$row['id']}" <eq name="groupid" value="$row['id']">selected="selected"</eq>>{$row['name']}</option>
  18. </volist>
  19. </select>
  20. <input type="submit" value="{:L('chaxun')}" class="button" />
  21. <input type="reset" value="{:L('reset')}" class="button" />
  22. </form>
  23. </td>
  24. </tr>
  25. </table>
  26. <form name="myform" action="{:U('User/deleteall')}" method="post">
  27. <div class="table-list">
  28. <table width="100%" cellspacing="0">
  29. <thead>
  30. <tr>
  31. <th width="20"><input type="checkbox" id="check_box" onclick="selectall('ids[]');" /></th>
  32. <th width="40">ID</th>
  33. <th align="left">{:L('username')}</th>
  34. <th width="110">{:L('user_group')}</th>
  35. <th width="120">{:L('email')}</th>
  36. <th width="150">{:L('user_reg_time')}</th>
  37. <th width="30">{:L('status')}</th>
  38. <th width="120">{:L('manage')}</th>
  39. </tr>
  40. </thead>
  41. <tbody>
  42. <volist name="ulist" id="user" key="k">
  43. <tr>
  44. <td align="center"><input type="checkbox" name="ids[]" value="{$user['id']}" /></td>
  45. <td align="center">{$user['id']}</td>
  46. <td>{$user['username']}</td>
  47. <td align="center">{$usergroup[$user['groupid']]['name']}</td>
  48. <td>{$user['email']}</td>
  49. <td align="center">{$user['createtime']|date="Y-m-d H:m:s",###}</td>
  50. <td align="center">
  51. <eq name="user['status']" value="1">
  52. {:L('enable')}
  53. <else />
  54. {:L('disable')}
  55. </eq>
  56. </td>
  57. <td align="center"><a href="{:U('User/edit',array(id=>$user['id']))}">{:L('edit')}</a> | <a href="javascript:confirm_delete('{:U('User/delete',array(id=>$user['id']))}')">{:L('delete')}</a></td>
  58. </tr>
  59. </volist>
  60. </tbody>
  61. </table>
  62. <div class="btn"><input type="submit" class="button" name="dosubmit" value="<?php echo L('delete')?>" /></div> </div>
  63. </div>
  64. </form>
  65. <div id="pages" class="page">{$page}</div>