sogo/UI/Templates/UIxAptTableView.wox
dev-unix.inverse.qc.ca f18c764ffa see ChangeLog
Monotone-Revision: 9054022ef1ca8aeba6e34842d27d9b94ce002b89

Monotone-Author: dev-unix.inverse.qc.ca
Monotone-Date: 2006-06-15T19:34:10
Monotone-Branch: ca.inverse.sogo
2006-06-15 19:34:10 +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>