| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <link href="<?= WEB_SITE_GLOBAL ?>/img/admin/style.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript" src="<?= WEB_SITE_GLOBAL ?>/js/jquery-1.7.1.min.js"></script>
- <script type="text/javascript" src="<?= WEB_SITE_GLOBAL ?>/js/admin/over.js"></script>
- <script type="text/javascript" src="<?= WEB_SITE_GLOBAL ?>/js/admin/admin.js"></script>
- <script type="text/javascript" src="<?= WEB_SITE_GLOBAL ?>/js/admin/calendar.js"></script>
- </head>
- <body>
- <div class="main_content new_product">
- <div class="crumbbar"><a href="/index/main_navon" target="main">快速导航</a> » {{map}}</div>
- <div class="main_toolbar clearfix">
- <div id="append"></div>
-
- <div class="globle_list">
- <form name="userForm" action="" method="post">
- <table cellspacing="0" cellpadding="0" class="tableList">
- <tbody><tr>
- <th>类型</th>
- <th>积分值</th>
- <th>时间</th>
-
- </tr>
- <!-- loop creditList -->
- <tr>
- <td><!-- if {{creditList' value.operation}}=="user/register" -->
- 注册
- <!-- elseif {{creditList' value.operation}}=="user/login" -->
- 登入
- <!-- elseif {{creditList' value.operation}}=="question/answer" -->
- 回答问题
- <!-- elseif {{creditList' value.operation}}=="adopt" -->
- 被采纳
- <!-- else -->
- 提问
- <!-- endif -->
- </td>
- <td>{{creditList' value.credit1}}</td>
- <td>{{creditList' value.time}}</td>
- </tr>
- <!-- endloop -->
- </tbody></table>
- </form>
- </div>
-
-
- </div>
-
-
- </div>
- </body>
- </html>
|