国内流行的内容管理系统(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.

54 lines
2.3KB

  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. </head>
  9. <body background='images/allbg.gif' leftmargin='8' topmargin='8'>
  10. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6">
  11. <tr>
  12. <td height="28" background="images/tbg.gif" colspan="7" style="padding-left:10px;">
  13. <b>投票管理</b>&nbsp;[<a href="vote_add.php"><u>增加一组投票</u></a>]
  14. </td>
  15. </tr>
  16. <tr align="center" bgcolor="#FBFCE2" height="24">
  17. <td width="8%">投票ID</td>
  18. <td width="22%">投票名称</td>
  19. <td width="15%">开始时间</td>
  20. <td width="15%">结束时间</td>
  21. <td width="10%">投票总数</td>
  22. <td width="10%">状态</td>
  23. <td width="20%">管理</td>
  24. </tr>
  25. {dede:datalist}
  26. <tr align="center" bgcolor="#FFFFFF" height="24"
  27. onMouseMove="javascript:this.bgColor='#FCFDEE';" onMouseOut="javascript:this.bgColor='#FFFFFF';">
  28. <td>{dede:field.aid /}</td>
  29. <td>
  30. <a href='{dede:global name="cfg_phpurl" /}/vote.php?aid={dede:field.aid/}&dopost=view' target='_blank'>
  31. <u>{dede:field.votename /}</u>
  32. </a>
  33. </td>
  34. <td>{dede:field.starttime function="GetDateMk(@me)" /}</td>
  35. <td>{dede:field.endtime function="GetDateMk(@me)" /}</td>
  36. <td>{dede:field.totalcount /}</td>
  37. <td><?php if($fields['isenable'] == 1){echo "<font color=red>未启用</font>";}else{echo "<font color=green>启用</font>";} ?></td>
  38. <td>
  39. <a href='vote_getcode.php?aid={dede:field.aid /}'>[获取代码]</a>
  40. <a href='vote_edit.php?aid={dede:field.aid /}&dopost=edit'>[更改]</a>
  41. &nbsp;
  42. <a href='vote_edit.php?aid={dede:field.aid /}&dopost=delete'>[删除]</a>
  43. </td>
  44. </tr>
  45. {/dede:datalist}
  46. <tr align="center" bgcolor="#F9FCEF" height="24">
  47. <td colspan="7">{dede:pagelist listsize='6'/}</td>
  48. </tr>
  49. </table>
  50. </td>
  51. </tr>
  52. </table>
  53. </body>
  54. </html>