mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-02 05:36:23 +00:00
Monotone-Revision: 01f82c6cdad306ebc5d1e92bf6efe32e51a0d96d Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-10-25T23:58:29 Monotone-Branch: ca.inverse.sogo
61 lines
2.6 KiB
XML
61 lines
2.6 KiB
XML
<?xml version='1.0' standalone='yes'?>
|
|
<container
|
|
xmlns="http://www.w3.org/1999/xhtml"
|
|
xmlns:var="http://www.skyrix.com/od/binding"
|
|
xmlns:const="http://www.skyrix.com/od/constant"
|
|
xmlns:uix="OGo:uix"
|
|
xmlns:rsrc="OGo:url"
|
|
xmlns:label="OGo:label">
|
|
<script type="text/javascript" rsrc:src="UIxFreeBusyUserSelector.js"><!-- space --></script>
|
|
<div class="freeBusyView">
|
|
<table class="freeBusy">
|
|
<thead>
|
|
<tr class="freeBusyHeader1">
|
|
<th class="attendees"></th>
|
|
<var:foreach list="daysToDisplay" item="currentDayToDisplay"
|
|
><th colspan="11"><var:string value="currentFormattedDay" /></th
|
|
></var:foreach>
|
|
</tr>
|
|
<tr class="freeBusyHeader2">
|
|
<th class="attendees"></th>
|
|
<var:foreach list="daysToDisplay" item="currentDayToDisplay"
|
|
><var:foreach list="hoursToDisplay" item="currentHourToDisplay"
|
|
><th><var:string value="currentHourToDisplay" const:numberformat="00:"/>00</th
|
|
></var:foreach
|
|
></var:foreach>
|
|
</tr>
|
|
<tr class="freeBusyHeader3">
|
|
<th class="attendees"></th>
|
|
<var:foreach list="daysToDisplay" item="currentDayToDisplay"
|
|
><var:foreach list="hoursToDisplay" item="currentHourToDisplay"
|
|
><th><span class="freeBusyZoneElement"><!-- space --></span><span class="freeBusyZoneElement"><!-- space --></span><span class="freeBusyZoneElement"><!-- space --></span><span class="freeBusyZoneElement"><!-- space --></span></th
|
|
></var:foreach
|
|
></var:foreach>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr class="futureAttendee">
|
|
<td class="attendees"><input type="text" class="textField"
|
|
readonly="readonly"
|
|
onclick="newAttendee(this);" /></td>
|
|
<var:foreach list="daysToDisplay" item="currentDayToDisplay"
|
|
><var:foreach list="hoursToDisplay" item="currentHourToDisplay"
|
|
><td></td
|
|
></var:foreach
|
|
></var:foreach>
|
|
</tr>
|
|
<tr class="attendeeModel">
|
|
<td class="attendees"><input type="text" class="textField"
|
|
onkeyup="onContactKeyUp(this, event);"
|
|
onblur="checkAttendee(this);" /></td>
|
|
<var:foreach list="daysToDisplay" item="currentDayToDisplay"
|
|
><var:foreach list="hoursToDisplay" item="currentHourToDisplay"
|
|
><td></td
|
|
></var:foreach
|
|
></var:foreach>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</container>
|