vote_main.htm 2.27 KB
{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 href="css/base.css" rel="stylesheet" type="text/css">
</head>
<body background='images/allbg.gif' leftmargin='8' topmargin='8'>
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6">
  <tr>
   <td height="28" background="images/tbg.gif" colspan="7" style="padding-left:10px;">
     <b>投票管理</b>&nbsp;[<a href="vote_add.php"><u>增加一组投票</u></a>]
	</td>
</tr>
  <tr align="center" bgcolor="#FBFCE2" height="24"> 
      <td width="8%">投票ID</td>
      <td width="22%">投票名称</td>
      <td width="15%">开始时间</td>
      <td width="15%">结束时间</td>
      <td width="10%">投票总数</td>
	  <td width="10%">状态</td>
      <td width="20%">管理</td>
   </tr>
        {dede:datalist}
         <tr align="center" bgcolor="#FFFFFF" height="24" 
         	onMouseMove="javascript:this.bgColor='#FCFDEE';" onMouseOut="javascript:this.bgColor='#FFFFFF';"> 
          <td>{dede:field.aid /}</td>
          <td>
          	<a href='{dede:global name="cfg_phpurl" /}/vote.php?aid={dede:field.aid/}&dopost=view' target='_blank'>
          	<u>{dede:field.votename /}</u>
          	</a>
          </td>
          <td>{dede:field.starttime function="GetDateMk(@me)" /}</td>
          <td>{dede:field.endtime function="GetDateMk(@me)" /}</td>
          <td>{dede:field.totalcount /}</td>
		  <td><?php if($fields['isenable'] == 1){echo "<font color=red>未启用</font>";}else{echo "<font color=green>启用</font>";} ?></td>
          <td>
          	<a href='vote_getcode.php?aid={dede:field.aid /}'>[获取代码]</a>
          	<a href='vote_edit.php?aid={dede:field.aid /}&dopost=edit'>[更改]</a>
		        &nbsp;
		        <a href='vote_edit.php?aid={dede:field.aid /}&dopost=delete'>[删除]</a>
		      </td>
        </tr>
		{/dede:datalist}
     <tr align="center" bgcolor="#F9FCEF" height="24"> 
      <td colspan="7">{dede:pagelist listsize='6'/}</td>
     </tr>
   </table>
   </td>
</tr>
</table>
</body>
</html>