root/trunk/calendar3/webclient/war/docs/calendars.jsp

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
4 <%@ include file="header.jsp" %>
5   <page>calendars</page>
6
7   <%-- List of all calendars and subcalendars. --%>
8   <calendars>
9     <logic:present name="calForm" property="publicCalendars" >
10       <bean:define id="calendars" name="calForm" property="publicCalendars" />
11       <logic:iterate id="calendar" name="calendars" >
12         <bean:define id="curCal" name="calendar" toScope="request" />
13         <jsp:include page="subcalendars.jsp" />
14       </logic:iterate>
15     </logic:present>
16   </calendars>
17
18 <%@ include file="footer.jsp" %>
Note: See TracBrowser for help on using the browser.