|
Revision 9
(checked in by johnsa, 7 years ago)
|
simplified authUser xml, and added prefs to user listing
|
| Line | |
|---|
| 1 |
<%@ taglib uri='struts-bean' prefix='bean' %> |
|---|
| 2 |
<%@ taglib uri='struts-logic' prefix='logic' %> |
|---|
| 3 |
<%@ taglib uri='struts-html' prefix='html' %> |
|---|
| 4 |
<%@ taglib uri='struts-genurl' prefix='genurl' %> |
|---|
| 5 |
<html:xhtml/> |
|---|
| 6 |
|
|---|
| 7 |
<%@include file="/docs/header.jsp"%> |
|---|
| 8 |
|
|---|
| 9 |
<page>authUserList</page> |
|---|
| 10 |
<% |
|---|
| 11 |
String rpitemp; |
|---|
| 12 |
%> |
|---|
| 13 |
|
|---|
| 14 |
<authUsers> |
|---|
| 15 |
<logic:iterate id="authUser" name="peForm" property="authUsers" > |
|---|
| 16 |
<authUser> |
|---|
| 17 |
<account><bean:write name="authUser" property="user.account" /></account> |
|---|
| 18 |
<superUser><bean:write name="authUser" property="superUser"/></superUser> |
|---|
| 19 |
<alertUser><bean:write name="authUser" property="alertUser"/></alertUser> |
|---|
| 20 |
<publicEventUser><bean:write name="authUser" property="publicEventUser"/></publicEventUser> |
|---|
| 21 |
</authUser> |
|---|
| 22 |
</logic:iterate> |
|---|
| 23 |
</authUsers> |
|---|
| 24 |
|
|---|
| 25 |
<%@include file="/docs/footer.jsp"%> |
|---|
| 26 |
|
|---|