2013-06-05 16:24:56 +02:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!-- $Id$ -->
|
|
|
|
<overlay>
|
|
|
|
<template id="mail.display" template="" lang="" group="0" version="1.9.001">
|
|
|
|
<html id="msg"/>
|
2013-11-26 16:30:08 +01:00
|
|
|
<vbox class="mailDisplay mailDisplayHeaderSection" >
|
2013-10-04 13:09:31 +02:00
|
|
|
<toolbar id="toolbar"/>
|
2013-07-20 10:02:20 +02:00
|
|
|
<hbox class="mailDisplayHeaders" disabled="!@FROM" width="100%">
|
2013-06-05 16:24:56 +02:00
|
|
|
<description value="From"/>
|
2013-07-19 17:13:01 +02:00
|
|
|
<taglist id="FROM" readonly="true" onclick="app.mail.address_click"/>
|
2013-06-05 16:24:56 +02:00
|
|
|
</hbox>
|
2013-07-20 10:02:20 +02:00
|
|
|
<hbox class="mailDisplayHeaders" disabled="!@SENDER" width="100%">
|
2013-07-15 14:31:02 +02:00
|
|
|
<description value="on behalf of"/>
|
2013-07-20 10:02:20 +02:00
|
|
|
<taglist id="SENDER" readonly="true" onclick="app.mail.address_click"/>
|
2013-07-15 14:31:02 +02:00
|
|
|
</hbox>
|
2013-07-20 10:02:20 +02:00
|
|
|
<hbox class="mailDisplayHeaders" disabled="!@TO" width="100%">
|
|
|
|
<description value="To"/>
|
|
|
|
<taglist id="TO" readonly="true" onclick="app.mail.address_click"/>
|
|
|
|
</hbox>
|
|
|
|
<hbox class="mailDisplayHeaders" disabled="!@CC" width="100%">
|
2013-07-15 14:31:02 +02:00
|
|
|
<description value="Cc"/>
|
2013-07-20 10:02:20 +02:00
|
|
|
<taglist id="CC" readonly="true" onclick="app.mail.address_click"/>
|
2013-07-15 14:31:02 +02:00
|
|
|
</hbox>
|
2013-07-20 10:02:20 +02:00
|
|
|
<hbox class="mailDisplayHeaders" disabled="!@BCC" width="100%">
|
2013-07-15 14:31:02 +02:00
|
|
|
<description value="Bcc"/>
|
2013-07-20 10:02:20 +02:00
|
|
|
<taglist id="BCC" readonly="true" onclick="app.mail.address_click"/>
|
2013-06-05 16:24:56 +02:00
|
|
|
</hbox>
|
|
|
|
<hbox class="mailDisplayHeaders" width="100%">
|
|
|
|
<description value="Date"/>
|
|
|
|
<date-time align="left" id="mail_displaydate" readonly="true"/>
|
|
|
|
</hbox>
|
|
|
|
<hbox class="mailDisplayHeaders" width="100%">
|
|
|
|
<description value="Subject"/>
|
2013-10-18 11:58:25 +02:00
|
|
|
<description align="left" id="mail_displaysubject" no_lang="1" readonly="true"/>
|
2013-06-05 16:24:56 +02:00
|
|
|
</hbox>
|
2013-06-07 15:58:17 +02:00
|
|
|
</vbox>
|
|
|
|
<vbox class="mailDisplay" width="100%">
|
2013-10-11 11:28:33 +02:00
|
|
|
<box class="$cont[mailDisplayContainerClass]">
|
2013-06-05 16:24:56 +02:00
|
|
|
<html id="mail_displaybody"/>
|
|
|
|
</box>
|
2013-10-11 11:28:33 +02:00
|
|
|
<box class="$cont[mailDisplayAttachmentsClass]">
|
2013-10-16 13:25:46 +02:00
|
|
|
<!-- <html id="mail_displayattachments"/> -->
|
|
|
|
<grid disabled="@no_griddata" id="mail_displayattachments">
|
|
|
|
<columns>
|
|
|
|
<column disabled="!@showtempname"/>
|
|
|
|
<column disabled="!@showtempname"/>
|
|
|
|
<column disabled="!@showtempname"/>
|
|
|
|
<column disabled="!@showtempname"/>
|
|
|
|
<column width="50%" />
|
|
|
|
<column width="20%" />
|
|
|
|
<column width="11%" />
|
|
|
|
<column width="3%"/>
|
|
|
|
<column width="3%"/>
|
|
|
|
<column width="3%"/>
|
|
|
|
<column />
|
|
|
|
</columns>
|
|
|
|
<rows>
|
|
|
|
<row >
|
|
|
|
<description id="${row}[attachment_number]" />
|
|
|
|
<description id="${row}[partID]" />
|
|
|
|
<description id="${row}[type]" />
|
|
|
|
<description id="${row}[winmailFlag]" />
|
2013-10-18 11:58:25 +02:00
|
|
|
<description class="useEllipsis et2_link" id="${row}[filename]" no_lang="1" onclick="app.mail.displayAttachment"/>
|
2013-10-16 13:25:46 +02:00
|
|
|
<description id="${row}[mimetype]" />
|
|
|
|
<description align="right" id="${row}[size]" />
|
|
|
|
<buttononly id="${row}[save]" value="save" image="fileexport" onclick="app.mail.saveAttachment"/>
|
|
|
|
<buttononly id="${row}[saveAsVFS]" value="save" image="filemanager/navbar" onclick="app.mail.saveAttachmentToVFS"/>
|
|
|
|
<buttononly class="$row_cont[classSaveAllPossiblyDisabled]" id="${row}[save_all]" value="save_all" image="mail/save_all" onclick="app.mail.saveAllAttachmentsToVFS"/>
|
|
|
|
</row>
|
|
|
|
</rows>
|
|
|
|
</grid>
|
2013-06-07 15:58:17 +02:00
|
|
|
</box>
|
2013-06-05 16:24:56 +02:00
|
|
|
</vbox>
|
|
|
|
</template>
|
|
|
|
</overlay>
|