]> err.no Git - scalable-opengroupware.org/blob - SOGo/UI/Scheduler/UIxCalDayPrintview.wox
fixes for SOGo bug #1070
[scalable-opengroupware.org] / SOGo / UI / Scheduler / UIxCalDayPrintview.wox
1 <?xml version="1.0" standalone="yes"?>
2 <var:component xmlns="http://www.w3.org/1999/xhtml"
3                xmlns:var="http://www.skyrix.com/od/binding"
4                xmlns:const="http://www.skyrix.com/od/constant"
5                xmlns:rsrc="OGo:url"
6                xmlns:label="OGo:label"
7                className="UIxPrintPageFrame"
8                title="title"
9 >
10   <table border="1" cellpadding="5" cellspacing="0" width="100%">
11     <tr>
12       <td colspan="2" align="center">
13         <h1 class="dayprintview"><var:string value="title" /></h1>
14         <h2 class="dayprintview"
15         ><var:string value="formattedCalendarUIDs"/></h2>
16       </td>
17     </tr>
18     <tr valign="top">
19       <var:if condition="hasHolidayInfo">
20         <tr>
21           <td colspan="2" align="left">
22             <b><var:string value="holidayInfo.title" /></b>
23           </td>
24         </tr>
25       </var:if>
26       <var:foreach list="allDayApts" item="appointment">
27         <tr>
28           <td width="10%">
29             <var:entity name="nbsp" />
30           </td>
31           <td class="dayprintview_content">
32             <var:foreach list="allDayApts" item="appointment">
33               <var:string value="shortTextForApt"
34                           const:escapeHTML="NO"
35               />
36               <br />
37             </var:foreach>
38           </td>
39         </tr>
40       </var:foreach>
41       <var:foreach list="dateRange" item="currentDate">
42         <tr>
43           <td width="10%" rowspan="minRequiredRowSpan" class="dayprintview_time">
44             <var:string value="currentDate"
45                         const:dateformat="%H:%M"
46             />
47           </td>
48           <var:foreach list="aptsForCurrentDate" item="appointment">
49             <td class="dayprintview_content">
50               <var:string value="shortTextForApt"
51                           const:escapeHTML="NO"
52                           var:style="aptStyle"
53               />
54             </td>
55             <var:if condition="minRequiredRowSpan" const:value="1" const:negate="YES">
56             </var:if>
57           </var:foreach>
58           <var:if condition="hasNoAptsForCurrentDate">
59             <td><var:entity const:name="nbsp" /></td>
60           </var:if>
61         </tr>
62       </var:foreach>
63     </tr>
64   </table>
65 </var:component>