mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-14 21:04:53 +00:00
Monotone-Parent: c8416ddd56a3d45f1ebd52063e56ceb17ed992f2
Monotone-Revision: 7a7aabe043c26fa96cca91a06e9d00405b89074a Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-10-11T18:17:24 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
<?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:rsrc="OGo:url"
|
||||
xmlns:label="OGo:label">
|
||||
<h2>Tasks</h2>
|
||||
<label><input class="checkBox"
|
||||
var:checked="shouldHideCompletedTasks"
|
||||
type="checkbox"
|
||||
onclick="return onHideCompletedTasks(this);"
|
||||
/><var:string label:value="Hide completed tasks"
|
||||
/></label>
|
||||
<ul id="tasksList">
|
||||
<var:foreach list="fetchCoreTasksInfos" item="currentTask"
|
||||
><var:if condition="shouldDisplayCurrentTask"
|
||||
><li var:id="currentTask.c_name"
|
||||
var:class="currentStatusClass"
|
||||
onmousedown="return false;"
|
||||
onclick="return onRowClick(event);"
|
||||
ondblclick="return editDoubleClickedEvent(this);"
|
||||
><input class="checkBox"
|
||||
var:checked="isCurrentTaskCompleted"
|
||||
type="checkbox"
|
||||
onchange="return updateTaskStatus(this);"
|
||||
/><var:string value="currentTask.title" const:escapeHTML="NO"
|
||||
/></li></var:if>
|
||||
</var:foreach>
|
||||
</ul>
|
||||
</container>
|
||||
Reference in New Issue
Block a user