]> err.no Git - scalable-opengroupware.org/blob - UI/Templates/UIxAptTableView.wox
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1004 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / UI / Templates / UIxAptTableView.wox
1 <?xml version='1.0' standalone='yes'?>
2 <table
3   style="font-size: 11px;"
4   border="0" cellspacing="0" cellpadding="2"
5   xmlns="http://www.w3.org/1999/xhtml"
6   xmlns:var="http://www.skyrix.com/od/binding"
7   xmlns:const="http://www.skyrix.com/od/constant"
8 >
9   <tr>
10     <th>ID</th>
11     <th>Title</th>
12     <th>Time</th>
13     <th>Version</th>
14     <th>Location</th>
15   </tr>
16   <var:foreach list="appointments" item="appointment">
17     <tr>
18       <td><var:string value="appointment.dateId"/></td>
19       <td>
20         <a var:href="appointmentViewURL"
21           ><var:string value="appointment.title"/></a>
22       </td>
23       <td>
24         <var:string value="appointment.startDate"
25                     const:dateformat="%Y-%m-%d %H:%M" />
26         -
27         <var:string value="appointment.endDate"
28                     const:dateformat="%Y-%m-%d %H:%M" />
29       </td>
30       <td><var:string value="appointment.objectVersion"/></td>
31       <td><var:string value="appointment.location"/></td>
32     </tr>
33   </var:foreach>
34 </table>