国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

vote_main.htm 2.4KB

3 年前
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {dede:config.pagesize value='20'/}
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
  7. <title>投票管理</title>
  8. <link rel="stylesheet" href="/static/web/css/font-awesome.min.css">
  9. <link rel="stylesheet" href="/static/web/css/bootstrap.min.css">
  10. <link rel="stylesheet" href="/static/web/css/admin.css">
  11. </head>
  12. <body>
  13. <div class="container-fluid">
  14. <ol class="breadcrumb">
  15. <li class="breadcrumb-item"><a href="index_body.php">后台面板</a></li>
  16. <li class="breadcrumb-item active">投票管理</li>
  17. </ol>
  18. <div class="card shadow-sm">
  19. <div class="card-header">投票管理</div>
  20. <div class="card-body">
  21. <div class="table-responsive">
  22. <table class="table table-borderless table-hover">
  23. <thead>
  24. <tr>
  25. <td scope="col">id</td>
  26. <td scope="col">投票名称</td>
  27. <td scope="col">开始时间</td>
  28. <td scope="col">结束时间</td>
  29. <td scope="col">投票总数</td>
  30. <td scope="col">状态</td>
  31. <td scope="col">操作</td>
  32. </tr>
  33. </thead>
  34. <tbody>
  35. {dede:datalist}
  36. <tr>
  37. <td>{dede:field.aid/}</td>
  38. <td><a href="{dede:global name='cfg_phpurl'/}/vote.php?aid={dede:field.aid/}&dopost=view" target="_blank"> {dede:field.votename/}</a></td>
  39. <td>{dede:field.starttime function="GetDateMk(@me)"/}</td>
  40. <td>{dede:field.endtime function="GetDateMk(@me)"/}</td>
  41. <td>{dede:field.totalcount/}</td>
  42. <td><?php if ($fields['isenable'] == 1){echo "未启用";} else {echo "启用";} ?></td>
  43. <td>
  44. <a href="vote_edit.php?aid={dede:field.aid/}&dopost=edit" class="btn btn-light btn-sm"><i class="fa fa-pencil-square" title="修改"></i></a>
  45. <a href="vote_getcode.php?aid={dede:field.aid/}" class="btn btn-light btn-sm"><i class="fa fa-code" title="代码"></i></a>
  46. <a href="vote_edit.php?aid={dede:field.aid/}&dopost=delete" class="btn btn-danger btn-sm"><i class="fa fa-trash" title="删除"></i></a>
  47. </td>
  48. </tr>
  49. {/dede:datalist}
  50. <tr>
  51. <td colspan="7"><a href="vote_add.php" class="btn btn-success btn-sm">添加一组投票</a></td>
  52. </tr>
  53. </tbody>
  54. </table>
  55. </div>
  56. {dede:pagelist listsize='2'/}
  57. </div>
  58. </div>
  59. </div>
  60. </body>
  61. </html>