mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-23 12:25:23 +00:00
Monotone-Parent: 411bd2c474676e8b793da5510bb3a0dd6e801a65
Monotone-Revision: 5ce544e4196355529d09f53ee1f29a26e0df0733 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-08-09T21:37:24 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -19,15 +19,7 @@
|
||||
<td class="tbtv_headercell">
|
||||
<var:component className="UIxSortableTableHeader"
|
||||
label:label="Lastname"
|
||||
const:sortKey="sn"
|
||||
const:href="view"
|
||||
var:queryDictionary="context.request.formValues"
|
||||
/>
|
||||
</td>
|
||||
<td class="tbtv_headercell">
|
||||
<var:component className="UIxSortableTableHeader"
|
||||
label:label="Firstname"
|
||||
const:sortKey="givenname"
|
||||
const:sortKey="cn"
|
||||
const:href="view"
|
||||
var:queryDictionary="context.request.formValues"
|
||||
/>
|
||||
@@ -48,17 +40,16 @@
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<var:foreach list="contactInfos" item="contact">
|
||||
<var:foreach list="contactInfos" item="currentContact">
|
||||
<tr class="tableview"
|
||||
var:id="contact.c_name"
|
||||
var:id="currentContact.c_name"
|
||||
onclick="return onRowClick(event);"
|
||||
ondblclick="return onContactRowDblClick(event, this);"
|
||||
oncontextmenu="return onContactContextMenu(event, this);">
|
||||
<td onmousedown="return false;"><var:string value="contact.sn" /></td>
|
||||
<td onmousedown="return false;"><var:string value="contact.givenname" /></td>
|
||||
<td onmousedown="return false;"><var:string value="contact.mail" /></td>
|
||||
<td onmousedown="return false;"><var:string value="contact.telephonenumber" /></td>
|
||||
<td onmousedown="return false;"><var:string value="contact.l" /></td>
|
||||
<td onmousedown="return false;"><img rsrc:src="abcard.gif" /><var:string value="currentContact.cn" /></td>
|
||||
<td onmousedown="return false;"><var:string value="currentContact.mail" /></td>
|
||||
<td onmousedown="return false;"><var:string value="currentContact.telephonenumber" /></td>
|
||||
<td onmousedown="return false;"><var:string value="currentContact.l" /></td>
|
||||
</tr>
|
||||
</var:foreach>
|
||||
</tbody>
|
||||
|
||||
Reference in New Issue
Block a user