|
Revision 216
(checked in by johnsa, 7 years ago)
|
adding sys stats jsp file to public client (didn't realize this wasn't committed)
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
<%@ taglib uri='struts-bean' prefix='bean' %> |
|---|
| 2 |
<%@ taglib uri='struts-logic' prefix='logic' %> |
|---|
| 3 |
<%@ taglib uri='struts-genurl' prefix='genurl' %> |
|---|
| 4 |
<%@ taglib uri='struts-html' prefix='html' %> |
|---|
| 5 |
<html:xhtml/> |
|---|
| 6 |
|
|---|
| 7 |
<%@include file="/docs/header.jsp"%> |
|---|
| 8 |
|
|---|
| 9 |
<page>showSysStats</page> |
|---|
| 10 |
|
|---|
| 11 |
<sysStats> |
|---|
| 12 |
<logic:iterate id="sysStat" name="calForm" property="sysStats"> |
|---|
| 13 |
<logic:equal name="sysStat" property="statKind" value="0"> |
|---|
| 14 |
<header><bean:write name="sysStat" property="statLabel" /></header> |
|---|
| 15 |
</logic:equal> |
|---|
| 16 |
<logic:notEqual name="sysStat" property="statKind" value="0"> |
|---|
| 17 |
<stat> |
|---|
| 18 |
<label><bean:write name="sysStat" property="statLabel" /></label> |
|---|
| 19 |
<type><bean:write name="sysStat" property="statType" /></type> |
|---|
| 20 |
<value><bean:write name="sysStat" property="statVal" /></value> |
|---|
| 21 |
</stat> |
|---|
| 22 |
</logic:notEqual> |
|---|
| 23 |
</logic:iterate> |
|---|
| 24 |
</sysStats> |
|---|
| 25 |
|
|---|
| 26 |
<%@include file="/docs/footer.jsp"%> |
|---|