blob: d2827e31e2d951fabace1def0b5b7946424f7392 [file] [log] [blame]
<!-- Standard Struts Entries -->
<%@ page language="java" contentType="text/html;charset=utf-8" %>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<html:html locale="true">
<!-- Standard Content -->
<%@ include file="header.jsp" %>
<!-- Body -->
<body bgcolor="white">
<table border="1" cellpadding="5">
<tr>
<th align="center" colspan="3">
Registered Managed Beans
</th>
</tr>
<tr>
<th align="center">Name</th>
<th align="center">Group</th>
<th align="center">Description</th>
</tr>
<logic:iterate id="bean" name="beans">
<tr>
<td><bean:write name="bean" property="name"/></td>
<td><bean:write name="bean" property="group"/></td>
<td><bean:write name="bean" property="description"/></td>
</tr>
</logic:iterate>
</table>
</body>
<!-- Standard Footer -->
<%@ include file="footer.jsp" %>
</html:html>