|
Revision 292
(checked in by johnsa, 7 years ago)
|
Updates to personal client jsp to bring the event xml much more in line with the admin client (particularly in the data and time components). This could be taken further.
Mass cleanup of jsp code, including addition of xhtml output tag to produce better form elements.
Moved "add event" page in public client to be up-to-date with current date and time components; still need to fix up widgets.
|
- 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 |
|
|---|
| 5 |
<%@include file="/docs/header.jsp"%> |
|---|
| 6 |
|
|---|
| 7 |
<page>showSysStats</page> |
|---|
| 8 |
|
|---|
| 9 |
<sysStats> |
|---|
| 10 |
<logic:iterate id="sysStat" name="calForm" property="sysStats"> |
|---|
| 11 |
<logic:equal name="sysStat" property="statKind" value="0"> |
|---|
| 12 |
<header><bean:write name="sysStat" property="statLabel" /></header> |
|---|
| 13 |
</logic:equal> |
|---|
| 14 |
<logic:notEqual name="sysStat" property="statKind" value="0"> |
|---|
| 15 |
<stat> |
|---|
| 16 |
<label><bean:write name="sysStat" property="statLabel" /></label> |
|---|
| 17 |
<type><bean:write name="sysStat" property="statType" /></type> |
|---|
| 18 |
<value><bean:write name="sysStat" property="statVal" /></value> |
|---|
| 19 |
</stat> |
|---|
| 20 |
</logic:notEqual> |
|---|
| 21 |
</logic:iterate> |
|---|
| 22 |
</sysStats> |
|---|
| 23 |
|
|---|
| 24 |
<%@include file="/docs/footer.jsp"%> |
|---|