sogo/UI/Templates/SchedulerUI/UIxAptTableView.wox
Wolfgang Sourdeau 118e05cc78 Monotone-Parent: 766dad0635896e668e91ba03381986aaac17e5c7
Monotone-Revision: 431e778e50cbef56367e4abff8e79f98bf274490

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-10-30T22:41:09
Monotone-Branch: ca.inverse.sogo
2006-10-30 22:41:09 +00:00

32 lines
935 B
XML

<?xml version='1.0' standalone='yes'?>
<table
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>