]> SALOME platform Git repositories - tools/siman.git/blob - Workspace/Siman/WebContent/jsp/readComment.jsp
Salome HOME
Show and Edit comments functionalities are implemented
[tools/siman.git] / Workspace / Siman / WebContent / jsp / readComment.jsp
1 <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
2     pageEncoding="ISO-8859-1"%>
3 <%@ taglib prefix="s" uri="/struts-tags"
4 %>
5  
6 <s:if test="%{comments != null && !comments.isEmpty()}">
7   <table width="100%" cellpadding="0" cellspacing="5" border="0" class="attribute">
8     <s:iterator var="current" value="comments">
9       <tr>
10         <td width="20" height="20" align="center">
11         </td>
12         <td>
13           <s:date name="#current.date" format="dd.MM.yyyy" />, <s:property value="#current.title"/>
14           <br><s:property value="#current.text" escapeHtml="false"/>
15           <br><s:property value="#current.user.displayName"/>
16         </td> 
17       </tr>
18       <tr height="1" bgcolor="#AAAAAA"><td colspan="2"></td></tr>
19     </s:iterator>
20   </table>
21 </s:if>