user_manage_credits.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <link href="<?= WEB_SITE_GLOBAL ?>/img/admin/style.css" rel="stylesheet" type="text/css" />
  6. <script type="text/javascript" src="<?= WEB_SITE_GLOBAL ?>/js/jquery-1.7.1.min.js"></script>
  7. <script type="text/javascript" src="<?= WEB_SITE_GLOBAL ?>/js/admin/over.js"></script>
  8. <script type="text/javascript" src="<?= WEB_SITE_GLOBAL ?>/js/admin/admin.js"></script>
  9. <script type="text/javascript" src="<?= WEB_SITE_GLOBAL ?>/js/admin/calendar.js"></script>
  10. </head>
  11. <body>
  12. <div class="main_content new_product">
  13. <div class="crumbbar"><a href="/index/main_navon" target="main">快速导航</a> » {{map}}</div>
  14. <div class="main_toolbar clearfix">
  15. <div id="append"></div>
  16. <div class="globle_list">
  17. <form name="userForm" action="" method="post">
  18. <table cellspacing="0" cellpadding="0" class="tableList">
  19. <tbody><tr>
  20. <th>类型</th>
  21. <th>积分值</th>
  22. <th>时间</th>
  23. </tr>
  24. <!-- loop creditList -->
  25. <tr>
  26. <td><!-- if {{creditList' value.operation}}=="user/register" -->
  27. 注册
  28. <!-- elseif {{creditList' value.operation}}=="user/login" -->
  29. 登入
  30. <!-- elseif {{creditList' value.operation}}=="question/answer" -->
  31. 回答问题
  32. <!-- elseif {{creditList' value.operation}}=="adopt" -->
  33. 被采纳
  34. <!-- else -->
  35. 提问
  36. <!-- endif -->
  37. </td>
  38. <td>{{creditList' value.credit1}}</td>
  39. <td>{{creditList' value.time}}</td>
  40. </tr>
  41. <!-- endloop -->
  42. </tbody></table>
  43. </form>
  44. </div>
  45. </div>
  46. </div>
  47. </body>
  48. </html>