Project

General

Profile

1
<%@ taglib uri="/tags/struts-bean" prefix="bean" %>
2
<%@ taglib uri="/tags/struts-html" prefix="html" %>
3
<%@ taglib uri="/tags/struts-logic" prefix="logic" %>
4

    
5
<logic:empty name="GeoServer.ApplicationState" property="dataStoreErrorKeys">
6
  <bean:message key="message.dataOkay"/>
7
</logic:empty>
8

    
9
<logic:notEmpty name="GeoServer.ApplicationState" property="dataStoreErrorKeys">
10
  <table class="info">
11
    <tr>
12
      <td class="label">	
13
  		<logic:iterate id="key" indexId="ctr" name="GeoServer.ApplicationState" property="dataStoreErrorKeys">
14
  			<nobr><%= key %></nobr><br>
15
  		</logic:iterate>
16
      </td>
17
      <td class="datum">
18
        <logic:iterate id="value" indexId="ctr" name="GeoServer.ApplicationState" property="dataStoreErrorValues">
19
          <nobr><%= value %></nobr><br>
20
        </logic:iterate>
21
      </td>
22
    </tr>	
23
  </table>
24
</logic:notEmpty>
(2-2/26)