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

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