|  | {dede:config.pagesize value="20"/}
<!DOCTYPE html
   PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
   <title>单独页面管理</title>
	<link rel="stylesheet" href="../static/css/bootstrap.min.css">
	<link href="../static/font-awesome/css/font-awesome.min.css" rel="stylesheet">
   <link href='css/base.css' rel='stylesheet' type='text/css'>
   <style>
      ul {
         padding: 0px;
         margin: 0px;
      }
      li {
         float: left;
         padding-right: 8px;
         line-height: 24px;
      }
   </style>
</head>
<body background='images/allbg.gif' leftmargin='8' topmargin='8'>
   <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6" style="margin-bottom:6px" class="table maintable table-bordered mt-3">
      <tr>
         <td bgcolor="#F2F2F2" colspan="6" style="padding-left:10px">
            <form action='templets_one.php' name='sss'>
               <ul>
                  <li>关键字:</li>
                  <li><input type='text' name='keyword' value="<?php if(!empty($keyword)) $keyword = ''; ?>"
                        style='width:160px' /></li>
                  <li>标识:</li>
                  <li><?php
     $likeid = (!isset($likeid) ? '' : $likeid);
     echo "<select name='likeid' id='likeid'>\r\n";
     $dsql->Execute("s","Select likeid From `#@__sgpage` group by likeid ");
     echo "<option value=''>不限</option>\r\n";
     while($arr = $dsql->GetArray('s'))
     {
        if($likeid==$arr['likeid']) echo "<option value='{$arr['likeid']}' selected>{$arr['likeid']}</option>\r\n";
        else echo "<option value='{$arr['likeid']}'>{$arr['likeid']}</option>\r\n";
     }
     echo "</select>\r\n";
  ?></li>
                  <li><button type="submit" name="button1" id="button1" class="btn btn-success btn-sm">搜索</button></li>
               </ul>
            </form>
         </td>
   </table>
   <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#cfcfcf" class="table table-bordered maintable">
      <tr>
         <td height="26" background="images/tbg.gif" colspan="7" style="padding-left:10px">
            <div style="float:left">
               <b>单独页面管理</b>
            </div>
            <div style="float:right">
               <a href="templets_one_add.php" class="btn btn-success btn-sm">增加一个页面</a>
                <a href="javascript:;" onClick="document.form1.submit();" class="btn btn-success btn-sm">更新选中页面</a>
                <a href="templets_one_edit.php?dopost=mkall" class="btn btn-success btn-sm">更新所有页面</a>
                   
            </div>
         </td>
      </tr>
      <tr align="center" bgcolor="#FBFCE2" height="26">
         <td width="6%">选择</td>
         <td width="6%">编号</td>
         <td width="30%">页面名称</td>
         <td width="11%">需编译</td>
         <td width="10%">标识</td>
         <td width="12%">修改时间</td>
         <td width="21%">管理</td>
      </tr>
      <form name='form1' action='templets_one_edit.php'>
         <input type='hidden' name='dopost' value='mksel' />
         {dede:datalist}
         <tr align="center" bgcolor="#FFFFFF" height="26" onMouseMove="javascript:this.bgColor='#FCFDEE';"
            onMouseOut="javascript:this.bgColor='#FFFFFF';">
            <td><input type='checkbox' name='ids[]' value='{dede:field.aid /}' class='np'></td>
            <td>{dede:field.aid /}</td>
            <td><a href='templets_one_edit.php?aid={dede:field.aid /}&dopost=edit'>{dede:field.title /}</a></td>
            <td>{dede:field.ismake function='GetIsMake(@me)'/}</td>
            <td>{dede:field.likeid /}</td>
            <td>{dede:field.uptime function='GetDateMk(@me)'/}</td>
            <td>
               <a href='templets_one_edit.php?aid={dede:field.aid /}&dopost=edit' class="btn btn-success btn-sm"> <i class="fa fa-pencil-square-o" aria-hidden="true"></i> 修改</a>
               <a href="templets_one_edit.php?aid={dede:field.aid /}&dopost=view" target='_blank' class="btn btn-success btn-sm"> <i class="fa fa-globe" aria-hidden="true"></i> 预览</a>
               <a href='templets_one_edit.php?aid={dede:field.aid /}&dopost=delete' class="btn btn-success btn-sm"> <i class="fa fa-trash" aria-hidden="true"></i>  删除</a>
            </td>
         </tr>
         {/dede:datalist}
      </form>
      <tr align="center" bgcolor="#F9FCEF" height="26">
         <td colspan="7">
            {dede:pagelist listsize=6/}
         </td>
      </tr>
   </table>
   </td>
   </tr>
   </table>
</body>
</html>
 |