国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

98 lines
5.0KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv='Content-Type' content='text/html; charset=<?php echo $cfg_soft_lang; ?>'>
  5. <title>圈子管理>圈子列表><?php echo $groupname?></title>
  6. <script language='javascript' src='js/main.js'></script>
  7. <link href="css/base.css" rel="stylesheet" type="text/css" />
  8. <style type="text/css">
  9. .rb{ border-right:1px solid #98CAEF }
  10. .tb{ border-top:1px solid #98CAEF }
  11. a.current {border-left:1px solid #cfcfcf;border-right:1px solid #cfcfcf;background:#ffffff;color:#FF0000;font-weight:bold;}
  12. </style>
  13. <body background='images/allbg.gif' leftmargin='8' topmargin='8'>
  14. <div class="bodytitle">
  15. <div class="bodytitleleft"></div>
  16. <div class="bodytitletxt">圈子管理</div>
  17. </div>
  18. <table width="98%" border="0" cellpadding="1" cellspacing="1" align="center" class="tbtitle" style="background:#CFCFCF;">
  19. <tr>
  20. <td height="30" align="left" bgcolor="#ffffff">
  21. <table width="228" border="0" align="left" cellpadding="0" cellspacing="0">
  22. <form action="group_user.php" method="get" name="form1" id="form1">
  23. <input name="gid" type="hidden" value="<?php echo $gid?>" />
  24. <tr>
  25. <td width="60">&nbsp;成员:</td>
  26. <td width="87"><input name="username" type="text" id="username" size="12" style="width:100" value="<?php echo $username?>" /></td>
  27. <td width="81" align="center"><input name="imageField" type="submit" class="np coolbg" value="搜索"/></td>
  28. </tr>
  29. </form>
  30. </table>
  31. <table width="405" border="0" cellpadding="0" cellspacing="0">
  32. <form action="group_user.php" method="get" name="form2" id="form2">
  33. <input name="gid" type="hidden" value="<?php echo $gid?>" />
  34. <input name="action" type="hidden" value="add" />
  35. <tr>
  36. <td width="90" align="right">&nbsp;加入会员:</td>
  37. <td width="112"><input name="uname" type="text" id="uname" size="15" style="width:100" value="<?php echo $username?>" /></td>
  38. <td width="75" align="left"><input type="radio" name="setmaster" id="setmaser" value="1" />
  39. 管理员</td>
  40. <td width="128" align="left"><input name="imageField2" type="submit" class="np coolbg" value="添加" id="imageField"/></td>
  41. </tr>
  42. </form>
  43. </table></td>
  44. </tr>
  45. </table>
  46. <br />
  47. <table width="98%" border="0" cellpadding="0" cellspacing="0" align="center">
  48. <tr>
  49. <td width="100%" height="24">
  50. <table width="99%" border="0" cellspacing="0" cellpadding="0" style="border:1px solid #CFCFCF;border-bottom:none;" class="gtab">
  51. <tr>
  52. <td height="26" background="images/tbg.gif" >
  53. <a href="group_main.php">圈子列表</a>
  54. <a href="group_edit.php?id=<?php echo $gid?>"><span id="cate_1" >基本资料</span></a>
  55. <a id="cate_2" class="current">成员管理</a>
  56. <a href="group_guestbook.php?gid=<?php echo $gid?>"><span id="cate_3">留言管理</span></a>
  57. <a href="group_notice.php?gid=<?php echo $gid?>"><span id="cate_4">公告管理</span></a> </td>
  58. </tr>
  59. </table></td>
  60. </tr>
  61. <tr >
  62. <td height="26" align="left" bgcolor="#FFFFFF">
  63. <!--成员管理-->
  64. <div id="cate_info_2">
  65. <table width="100%" border="0" cellpadding="1" cellspacing="1" bgcolor="#CFCFCF">
  66. <tr bgcolor="#FBFCE2">
  67. <td width="19%" height="28" align="center">用户名</td>
  68. <td width="17%" height="28" align="center">身份</td>
  69. <td width="17%" height="28" align="center">加入时间</td>
  70. <td width="13%" height="28" align="center">发贴数</td>
  71. <td width="11%" align="center">回贴数</td>
  72. <td width="23%" align="center">操作</td>
  73. </tr>
  74. {dede:datalist}
  75. <?php
  76. $rs = $fields;
  77. ?>
  78. <tr height="28" bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='#FCFDEE';" onMouseOut="javascript:this.bgColor='#FFFFFF';">
  79. <td height="28" align="center" ><a href="member_view.php?id=<?php echo $rs['uid']?>"><?php echo $rs['username']?></a></td>
  80. <td height="28" align="center" ><?php echo GetMaster($rs['username'])?></td>
  81. <td height="28" align="center" ><?php echo GetDateMk($rs['jointime'])?></td>
  82. <td height="28" align="center" ><?php echo $rs['posts']?></td>
  83. <td height="28" align="center" ><?php echo $rs['replies']?></td>
  84. <td height="28" align="center" ><a href="group_user.php?action=admin&id=<?php echo $rs['uid']?>&gid=<?php echo $gid?>">设为管理员</a> | <a href="group_user.php?action=del&id=<?php echo $rs['uid']?>&gid=<?php echo $gid?>">移出群</a></td>
  85. </tr>
  86. {/dede:datalist}
  87. <tr>
  88. <td height="28" colspan="6" bgcolor="#F9FCEF">{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="5"/}</td>
  89. </tr>
  90. </table>
  91. </div>
  92. </td>
  93. </tr>
  94. </table>
  95. <a name="nmes" id="nmes"></a>
  96. </body>
  97. </html>