Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <c:if test="${!empty reportList}">
  2. <table>
  3. <!-- <tr>
  4. <th><spring:message code="issuenum" /></th>
  5. <th><spring:message code="PROJECT" /></th>
  6. <th><spring:message code="SUMMARY" /></th>
  7. <th><spring:message code="CREATED" /></th>
  8. </tr>-->
  9. <c:forEach items="${reportList}" var="report">
  10. <tr>
  11. <c:forEach var="i" begin = "0" end = "${lenght}">
  12. <td>${report[i]}</td>
  13. </c:forEach>
  14. </tr>
  15. </c:forEach>
  16. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement