⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 messagesend.ftl

📁 学生选课系统 赶快来下载啊啊好东西 呵呵啊啊 啊啊啊啊啊
💻 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>

</head>

<body><!-- messagesend.ftl -->

<div id="wrap">

<#include "header.ftl"/>

<div id="content">

<#include "blognav_inc.ftl"/>

<#assign currentChoice="Sends">
<#include "messageleft_inc.ftl"/>

<div id="blogRight">
<@_report/>
<div id="emailFavor" class="noteBox commonOuter">
  <table class="emailView commonInnerTable">
		<tr class="hd">
			<td class="hdTitle" colspan="2">
				短消息内容

			</td>
		</tr>
		<tr class="content">
			<td class="title">
        收件人

			</td>
			<td class="value">
        <#list send.recvs as recv>
          <#comment> 获取收件人信息 </#comment>
          <a href="${_UrlUtil.encodeURL("/"+_EFUserUtil.getBlogURL(recv))}">${_EFUserUtil.getNickName(recv)}</a>;
        </#list>
			</td>
		</tr>
		<tr class="content">
			<td class="title">
        日&nbsp;&nbsp;&nbsp;期

			</td>
			<td class="value time">
        <#assign sendtime = _DateUtil.getDateTimeStr(_EFUser,send.send_time?number)/>
        ${sendtime}
			</td>
		</tr>
		<tr class="content">
			<td class="title">
        主&nbsp;&nbsp;&nbsp;题

			</td>
			<td class="value">
        <div class="textValue">${send.send_title?default("")?html}</div>
			</td>
		</tr>
		<tr class="content">
			<td class="title">
				内&nbsp;&nbsp;&nbsp;容

			</td>
			<td class="value">
				<div class="emailContent textValue">
        ${send.send_content?replace("\r\n", "<br>")}
				</div>
			</td>
		</tr>
    <tr class="content">
      <td class="emailActions" colspan=2 >
      <#if beforeList.size() &gt; 0>
        <#list beforeList as beforeMessage>
					<#assign iUrl=_UrlUtil.encodeURL("/blog/message.do?_fn=ViewSend&send_id="+beforeMessage.send_id)>
					<input type="button" class="middleButton" value="上一封" onclick="window.location='${iUrl}'">
        </#list>
      </#if>
      <#if afterList.size() &gt; 0>
        <#list afterList as afterMessage>
					<#assign iUrl=_UrlUtil.encodeURL("/blog/message.do?_fn=ViewSend&send_id="+afterMessage.send_id)>
					<input type="button" class="middleButton" value="下一封" onclick="window.location='${iUrl}'">
        </#list>
      </#if>
			<#assign iUrl=_UrlUtil.encodeURL("/blog/message.do?_fn=TransmitSend&send_id="+send.send_id)>
			<input type="button" class="middleButton" value="转&nbsp;发" onclick="window.location='${iUrl}'">
			<#assign iUrl=_UrlUtil.encodeURL("/blog/message.do?_fn=DeleteSend&send_message="+send.send_id)>
			<input type="button" class="middleButton" value="删&nbsp;除" onclick="window.location='${iUrl}'">
    </td>
  </tr>
</table>

</div><#comment> end emailSend </#comment>

</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 + -