<%@ include file="/include/common.inc" %>
<%
    Object[]	keys = ct.getValues("keys");
%>

<html>

<head>
<%@ include file="/include/encoding.inc" %>
<title>${top_bo_name} List</title>
</head>

<body> 

<h3>${top_bo_name} List</h3>

<%@ include file="/include/navigation.inc" %>

<%
if(keys.length == 0) {
%>
<br>There is no data
<%
} else {
%>

<table border="1"> 
  <tr>
    <th><%=res.getString("key")%></th>
  </tr>

<%
   for (int i = 0; i < keys.length; i++) {
%>
  <tr>
    <td><a href="<%=helper.eventURL("onItemSelected", "key", (String)keys[i])%>">
      <%=keys[i]%></a></td>
  </tr>

<%
   }
%>
</table>
<%
}
%>


</body>

</html>
