📄 userrewardcosts.ftl
字号:
<#include "lib/report.tpl"/>
<#import "lib/html.tpl" as html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=${_encoding?default("GBK")}" />
<#assign navtitle = "悬赏付费记录 - 积分管理 - ">
<#include "/common/title.ftl">
<#include "/common/meta.ftl">
<link href="${_resPath}/lib/base.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="${_contextPath}/ef/js/prototype.js"></script>
<script type="text/javascript" src="${_contextPath}/ef/js/base.js"></script>
<script type="text/javascript" src="${_contextPath}/ef/js/eforumad.js"></script>
<script language="JavaScript">
<!--
function gotoPage(_pNo){
$('_pNo').value = _pNo;
$('userCreditForm').submit();
}
//-->
</script>
</head>
<body><!-- userrewardcosts.ftl -->
<div id="wrap">
<#include "header.ftl"/>
<div id="content">
<#include "blognav_inc.ftl"/>
<#assign currentChoice="TopicRewardCostList">
<#include "usercredit_inc.ftl"/>
<div id="blogRight">
<form id="userCreditForm" method="post" action="${_UrlUtil.encodeURL("/blog.do")}">
<input type="hidden" name="_fn" value="TopicRewardCostList">
<input type="hidden" name="_pNo" id="_pNo" value="1">
<div id="userRewardsCosts" class="commonBox">
<table class="userCreditLogs commonTable">
<tr class="hd1">
<td colspan="4">
悬赏付费记录
</td>
</tr>
<tr class="hd2">
<td class="td2">
主题
</td>
<td class="td3">
支付
</td>
<td class="td4">
中赏人
</td>
<td class="td5">
悬赏时间
</td>
</tr>
<#if rewardcostList ? exists && rewardcostList.size() > 0>
<#list rewardcostList as rewardcost>
<tr class="content list">
<td class="td2"><div class="creditTopicTitle">
<a href="${_UrlUtil.encodeURL("/"+_PostUtil.getTopicURL(rewardcost.post_id))}" title="${rewardcost.post_title?html}" target="_blank">${rewardcost.post_title?html}</a></div>
</td>
<td class="td3 number">
${rewardcost.reward_amount}
</td>
<td class="td4">
<a href="${_UrlUtil.encodeURL("/"+_EFUserUtil.getBlogURL(rewardcost.reward_hituser))}" target="_blank">${_EFUserUtil.getNickName(rewardcost.reward_hituser)}</a>
</td>
<td class="td5 time">
${_DateUtil.getDateTimeStr(_EFUser,rewardcost.reward_time?number)}
</td>
</tr>
</#list>
<tr class="footer"><td colspan=4></td></tr>
<#else>
<#assign noDataInfo = "您目前没有悬赏付费的记录"/>
<#assign isTable = true/>
<#assign colspanNum = 6/>
<#include "nodatainfo_inc.ftl"/>
</#if>
</table>
</div><#comment> end userRewardsCosts </#comment>
<#if rewardcostList ? exists && rewardcostList.size() > 0>
<div id="pageNavigationDiv">
<#assign pagination=Context["PAGE_USER_REWARD_COST_LIST"]?default(_EmptyObject.pagination()) />
<@html.doPagination pagination=pagination/>
</div>
</#if>
</form>
</div><#comment> end blogRight </#comment>
</div><#comment> end content </#comment>
<#include "footer.ftl"/>
</div><#comment>end wrap </#comment>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -