|
Revision 358
(checked in by johnsa, 7 years ago)
|
adding a missing file to user client jsp
|
- 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='bedework' prefix='bw' %> |
|---|
| 4 |
|
|---|
| 5 |
<logic:iterate name="calForm" property="subscriptions" id="subscription"> |
|---|
| 6 |
<subscription> |
|---|
| 7 |
<bw:emitText name="subscription" property="name" /> |
|---|
| 8 |
<bw:emitText name="subscription" property="uri" /> |
|---|
| 9 |
<affectsFreeBusy><bean:write name="subscription" property="affectsFreeBusy" /></affectsFreeBusy> |
|---|
| 10 |
<display><bean:write name="subscription" property="display" /></display> |
|---|
| 11 |
<bw:emitText name="subscription" property="style" /> |
|---|
| 12 |
<internal><bean:write name="subscription" property="internalSubscription" /></internal> |
|---|
| 13 |
<emailNotifications><bean:write name="subscription" property="emailNotifications" /></emailNotifications> |
|---|
| 14 |
<calendarDeleted><bean:write name="subscription" property="calendarDeleted" /></calendarDeleted> |
|---|
| 15 |
<unremoveable><bean:write name="subscription" property="unremoveable" /></unremoveable> |
|---|
| 16 |
</subscription> |
|---|
| 17 |
</logic:iterate> |
|---|