<%@ taglib prefix="tiles" uri="http://tiles.apache.org/tags-tiles"%> <%@ taglib prefix="s" uri="/struts-tags" %> <%@ page contentType = "text/html; charset=UTF-8" %> <link rel="stylesheet" href="/kfdx/ajax/bootstrap/css/bootstrap.min.css"> <table class="content_table"> <s:iterator value="weekArrangements" status="status"> <tr> <td width=‘100%‘ align="left"> ● <a href="weekArrangementView.action?weekArrangementKey=<s:property value=‘key‘/>" target="_blank" title="内容查看"> <s:if test="content.length() > 18"><s:property value="content.substring(0,18)" />...</s:if> <s:else><s:property value="content" /></s:else> </a> <s:if test="accessory != null && accessory != ‘‘"> <span class="glyphicon glyphicon-paperclip"></span> </s:if> </td> <td nowrap align="center"> <s:date name="date" format="yyyy-MM-dd" /> </td> </tr> </s:iterator> </table>
时间: 2024-10-23 13:55:10