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
<table class="status">
6
	<tr>
7
		<td class="module">
8
			<bean:message key="config.wfs.label"/>:
9
		</td>
10
		<td style="health">
11
			<table class="progress">
12
			  <tbody>
13
		        <tr>
14
		        <logic:notEqual name="GeoServer.ApplicationState" property="wfsGood" value="0">
15
		    	    <td class="good"
16
		    	        width="<bean:write name="GeoServer.ApplicationState" property="wfsGood"/>%"
17
		    	        title="<bean:write name="GeoServer.ApplicationState" property="wfsGood"/>%">
18
		    	    </td>
19
		    	</logic:notEqual>
20
		        <logic:notEqual name="GeoServer.ApplicationState" property="wfsBad" value="0">		    	
21
		    	    <td class="bad"
22
		    	        width="<bean:write name="GeoServer.ApplicationState" property="wfsBad"/>%"
23
		    	        title="<bean:write name="GeoServer.ApplicationState" property="wfsBad"/>%">
24
		    	    </td>
25
		    	</logic:notEqual>		            
26
		        <logic:notEqual name="GeoServer.ApplicationState" property="wfsDisabled" value="0">		    	
27
		    	    <td class="disabled"
28
		    	        width="<bean:write name="GeoServer.ApplicationState" property="wfsDisabled"/>%"
29
		    	        title="<bean:write name="GeoServer.ApplicationState" property="wfsDisabled"/>%">
30
		    	    </td>
31
		    	</logic:notEqual>		                   
32
		        </tr>
33
		      </tbody>
34
		     </table>
35
		</td>
36
	</tr>
37
</table>
(5-5/5)