sogo/UI/Templates/SchedulerUI/UIxAptTableView.wox
Wolfgang Sourdeau 5f2ddae9fa Monotone-Parent: 5cf7ca16573b57f14380a1da5611560a68f5fd45
Monotone-Revision: d09e531b223359ae63e2198ec126138aff0422d8

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-08-14T20:30:19
Monotone-Branch: ca.inverse.sogo
2006-08-14 20:30:19 +00:00

35 lines
1,008 B
XML

<?xml version='1.0' standalone='yes'?>
<table
style="font-size: 11px;"
border="0" cellspacing="0" cellpadding="2"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:var="http://www.skyrix.com/od/binding"
xmlns:const="http://www.skyrix.com/od/constant"
>
<tr>
<th>ID</th>
<th>Title</th>
<th>Time</th>
<th>Version</th>
<th>Location</th>
</tr>
<var:foreach list="appointments" item="appointment">
<tr>
<td><var:string value="appointment.dateId"/></td>
<td>
<a var:href="appointmentViewURL"
><var:string value="appointment.title"/></a>
</td>
<td>
<var:string value="appointment.startDate"
const:dateformat="%Y-%m-%d %H:%M" />
-
<var:string value="appointment.endDate"
const:dateformat="%Y-%m-%d %H:%M" />
</td>
<td><var:string value="appointment.objectVersion"/></td>
<td><var:string value="appointment.location"/></td>
</tr>
</var:foreach>
</table>