国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

92 řádky
3.9KB

  1. {dede:config.pagesize value="20"/}
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  6. <title>单独页面管理</title>
  7. <link href='css/base.css' rel='stylesheet' type='text/css'>
  8. <style>
  9. ul { padding:0px; margin:0px;}
  10. li { float:left; padding-right:8px; line-height:24px; }
  11. </style>
  12. </head>
  13. <body background='images/allbg.gif' leftmargin='8' topmargin='8'>
  14. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6" style="margin-bottom:6px">
  15. <tr>
  16. <td background="images/wbg.gif" colspan="6" style="padding-left:10px;">
  17. <form action='templets_one.php' name='sss'>
  18. <ul>
  19. <li>关键字:</li>
  20. <li><input type='text' name='keyword' value="<?php if(!empty($keyword)) $keyword = ''; ?>" style='width:160px' /></li>
  21. <li>标识:</li>
  22. <li><?php
  23. $likeid = (!isset($likeid) ? '' : $likeid);
  24. echo "<select name='likeid' id='likeid'>\r\n";
  25. $dsql->Execute("s","Select likeid From `#@__sgpage` group by likeid ");
  26. echo "<option value=''>不限</option>\r\n";
  27. while($arr = $dsql->GetArray('s'))
  28. {
  29. if($likeid==$arr['likeid']) echo "<option value='{$arr['likeid']}' selected>{$arr['likeid']}</option>\r\n";
  30. else echo "<option value='{$arr['likeid']}'>{$arr['likeid']}</option>\r\n";
  31. }
  32. echo "</select>\r\n";
  33. ?></li>
  34. <li><input name="imageField" type="image" src="images/button_search.gif" width="60" height="22" border="0" class="np" /></li>
  35. </ul>
  36. </form>
  37. </td>
  38. </table>
  39. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#cfcfcf">
  40. <tr>
  41. <td height="28" background="images/tbg.gif" colspan="7" style="padding-left:10px;">
  42. <div style="float:left">
  43. <b>◆单独页面管理</b>
  44. </div>
  45. <div style="float:right">
  46. [<a href="templets_one_add.php"><u>增加一个页面</u></a>]
  47. &nbsp;[<a href="#" onClick="document.form1.submit();"><u>更新选中页面</u></a>]
  48. &nbsp;[<a href="templets_one_edit.php?dopost=mkall"><u>更新所有页面</u></a>]
  49. &nbsp;&nbsp;&nbsp;&nbsp;
  50. </div>
  51. </td>
  52. </tr>
  53. <tr align="center" bgcolor="#FBFCE2" height="24">
  54. <td width="6%">选择</td>
  55. <td width="6%">编号</td>
  56. <td width="30%">页面名称</td>
  57. <td width="11%">需编译</td>
  58. <td width="10%">标识</td>
  59. <td width="12%">修改时间</td>
  60. <td width="21%">管理</td>
  61. </tr>
  62. <form name='form1' action='templets_one_edit.php'>
  63. <input type='hidden' name='dopost' value='mksel' />
  64. {dede:datalist}
  65. <tr align="center" bgcolor="#FFFFFF" height="24" onMouseMove="javascript:this.bgColor='#FCFDEE';"
  66. onMouseOut="javascript:this.bgColor='#FFFFFF';">
  67. <td><input type='checkbox' name='ids[]' value='{dede:field.aid /}' class='np' ></td>
  68. <td>{dede:field.aid /}</td>
  69. <td><a href='templets_one_edit.php?aid={dede:field.aid /}&dopost=edit'>{dede:field.title /}</a></td>
  70. <td>{dede:field.ismake function='GetIsMake(@me)'/}</td>
  71. <td>{dede:field.likeid /}</td>
  72. <td>{dede:field.uptime function='GetDateMk(@me)'/}</td>
  73. <td>
  74. <a href='templets_one_edit.php?aid={dede:field.aid /}&dopost=edit'>[更改]</a>
  75. <a href="templets_one_edit.php?aid={dede:field.aid /}&dopost=view" target='_blank'>[预览]</a>
  76. &nbsp;|&nbsp;
  77. <a href='templets_one_edit.php?aid={dede:field.aid /}&dopost=delete'>[删除]</a>
  78. </td>
  79. </tr>
  80. {/dede:datalist}
  81. </form>
  82. <tr align="center" bgcolor="#F9FCEF" height="24">
  83. <td colspan="7">
  84. {dede:pagelist listsize=6/}
  85. </td>
  86. </tr>
  87. </table>
  88. </td>
  89. </tr>
  90. </table>
  91. </body>
  92. </html>