Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 

92 Zeilen
4.0 KiB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>我的推荐 - 用户中心 - {$kx.config.sitename}</title>
  6. <link rel="stylesheet" href="{$kx.config.resurl}/template/kxwebno1/css/global.css"/>
  7. <link rel="stylesheet" href="{$kx.config.resurl}/template/kxwebno1/css/style.css"/>
  8. </head>
  9. <body>
  10. <!-- 头部 -->
  11. {include file="/system/header"}
  12. <!-- 内容 -->
  13. <div class="pt-content">
  14. <!-- 面包屑 -->
  15. <div class="pt-crumb">
  16. <img src="{$kx.config.resurl}/template/kxwebno1/images/crumb_icon.png" class="pt-crumb-icon">
  17. <span class="color5">
  18. <a href="{$kx.config.siteurl}">{$kx.config.sitename}</a> > <a href="{link=user.index.index}" class="color5">用户中心</a> > <a href="{link=user.vote.index}">我的推荐</a>
  19. </span>
  20. </div>
  21. <!-- 一楼 -->
  22. <div class="pt-floor1">
  23. {include file="/system/userleft"}
  24. <!-- 推荐 -->
  25. <div class="relative pt-rank">
  26. <div class="pt-rank-head">
  27. <a href="{link=user.vote.index}" class="color5 mr10 bold">我推荐的书籍</a>
  28. <span class="mr10">|</span>
  29. <a href="{link=user.vote.booklist}" class="color7">我推荐的书单</a>
  30. </div>
  31. <div class="pt-user-table">
  32. {block method="pagination" name="paginate" page=$page limit=$pagesize count=$count maxpage=50 section=3}
  33. {block method="user.voteList" name=voteList userid=$userinfo.id page=$page}
  34. <table>
  35. <thead>
  36. <tr>
  37. <th>时间</th>
  38. <th>小说</th>
  39. <th>票数</th>
  40. <th>{$kx.config.user.exp_caption}奖励</th>
  41. <th>{$kx.config.user.point_caption}奖励</th>
  42. </tr>
  43. </thead>
  44. <tbody>
  45. {if empty($voteList)}
  46. <tr>
  47. <td colspan="5">您似乎来到了没有数据存在的荒原~~~</td>
  48. </tr>
  49. {else}
  50. {section loop=$voteList item=$loop}
  51. <tr>
  52. <td>{$loop.datetime|date="Y-m-d H:i:s"}</td>
  53. <td><a href="{link=novel.novel.index novelid=$loop.novel.novel.id pinyin=$loop.novel.novel.pinyin}">{$loop.novel.novel.name}</a></td>
  54. <td>{$loop.num}</td>
  55. <td>{$loop.exp}</td>
  56. <td>{$loop.point}</td>
  57. </tr>
  58. {/section}
  59. {/if}
  60. </tbody>
  61. </table>
  62. </div>
  63. <!-- 分页 -->
  64. {if !empty($voteList) && $paginate.total>1}
  65. <div class="pt-pages">
  66. <div class="pt30 color5">
  67. {if $paginate.prev}
  68. <a href="{link=user.vote.index page=$paginate.prev}"><span><</span></a>
  69. {else}
  70. <span class="disable"><</span>
  71. {/if}
  72. {loop=paginate.items}
  73. <a href="{link=user.vote.index page=$loop.num}">
  74. <span class="{$loop.status|default='','pt-pages-select'}">{$loop.num}</span>
  75. </a>
  76. {/loop}
  77. {if $paginate.next}
  78. <a href="{link=user.vote.index page=$paginate.next}"><span>></span></a>
  79. {else}
  80. <span class="disable">></span>
  81. {/if}
  82. </div>
  83. </div>
  84. {/if}
  85. </div>
  86. </div>
  87. </div>
  88. {include file="/system/footer"}
  89. </body>
  90. </html>