|
Revision 2
(checked in by douglm, 7 years ago)
|
Initial import of bedework
|
| 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>modAdminGroup</page> |
|---|
| 10 |
<creating><bean:write name="peForm" property="addingAdmingroup"/></creating> |
|---|
| 11 |
|
|---|
| 12 |
<formElements> |
|---|
| 13 |
<genurl:form action="admingroup/update" > |
|---|
| 14 |
<name> |
|---|
| 15 |
<logic:equal name="peForm" property="addingAdmingroup" value="true" > |
|---|
| 16 |
<html:text name="peForm" property="updAdminGroup.account" /> |
|---|
| 17 |
</logic:equal> |
|---|
| 18 |
<logic:notEqual name="peForm" property="addingAdmingroup" value="true" > |
|---|
| 19 |
<bean:write name="peForm" property="updAdminGroup.account" /> |
|---|
| 20 |
</logic:notEqual> |
|---|
| 21 |
</name> |
|---|
| 22 |
<desc> |
|---|
| 23 |
<html:textarea property="updAdminGroup.description" cols="50" rows="3" /> |
|---|
| 24 |
</desc> |
|---|
| 25 |
<groupOwner> |
|---|
| 26 |
<html:text name="peForm" property="adminGroupGroupOwner" /> |
|---|
| 27 |
</groupOwner> |
|---|
| 28 |
<eventsOwner> |
|---|
| 29 |
<html:text name="peForm" property="adminGroupEventOwner" /> |
|---|
| 30 |
</eventsOwner> |
|---|
| 31 |
|
|---|
| 32 |
<!-- these are the values that may be submitted to the update action --> |
|---|
| 33 |
<submitButtons> |
|---|
| 34 |
<button type="add">addAdminGroup</button> |
|---|
| 35 |
<button type="update">updateAdminGroup</button> |
|---|
| 36 |
<button type="cancel">cancelled</button> |
|---|
| 37 |
<button type="delete">delete</button> |
|---|
| 38 |
</submitButtons> |
|---|
| 39 |
|
|---|
| 40 |
</genurl:form> |
|---|
| 41 |
</formElements> |
|---|
| 42 |
|
|---|
| 43 |
<%@include file="/docs/footer.jsp"%> |
|---|
| 44 |
|
|---|