Fix warnings
[banana.git] / banana / templates / banana-message.inc.tpl
CommitLineData
7027794f 1<table class="bicol message">
2 <tr>
3 <th colspan="3" class="subject">
4 {if !$noactions}
5 <div class="menu">
6 {if $spool->nextUnread($artid)}
7 {imglink group=$group artid=$spool->nextUnread($artid) img=next_unread alt="Message non-lu suivant" accesskey=u}{/if}
8 {if $spool->prevPost($artid)}
598a1c53 9 {imglink group=$group artid=$spool->prevPost($artid) img=prev alt="Message précédent" accesskey=a}{/if}
7027794f 10 {if $spool->nextPost($artid)}
11 {imglink group=$group artid=$spool->nextPost($artid) img=next alt="Message suivant" accesskey=z}{/if}
12 {if $spool->prevThread($artid)}
598a1c53 13 {imglink group=$group artid=$spool->prevThread($artid) img=prev_thread alt="Discussion précédente" accesskey=q}{/if}
7027794f 14 {if $spool->nextThread($artid)}
15 {imglink group=$group artid=$spool->nextThread($artid) img=next_thread alt="Discussion suivante" accesskey=s}{/if}
16 </div>
17 <div class="action">
18 {if $message->canSend()}
19 {imglink group=$group action="new" img=post alt="Nouveau messasge" accesskey=p}
598a1c53 20 {imglink group=$group artid=$artid action="new" img=reply alt="Répondre" accesskey=r}
7027794f 21 {/if}
22 {if $message->canCancel()}
23 {imglink group=$group artid=$artid action="cancel" img=cancel alt="Annuler" accesskey=c}
24 {/if}
25 </div>
26 {/if}
27 {$message->translateHeaderValue('subject')}
28 </th>
29 </tr>
30 {foreach from=$headers name=headers item=hdr}
31 <tr class="pair">
32 <td class="hdr">{$message->translateHeaderName($hdr)}</td>
33 <td>{$message->translateHeaderValue($hdr)}</td>
34 {if $smarty.foreach.headers.first}
35 <td class="xface" rowspan="{$headers|@count}">
36 {if $message->hasXFace()}
37 <img src="{url group=$group artid=$artid part="xface"}" alt="[ X-Face ]" />
38 {/if}
39 </td>
40 {/if}
41 </tr>
42 {/foreach}
43 {assign var=files value=$message->getAttachments()}
44 {if $files|@count}
45 <tr class="pair">
46 <td class="hdr">Fichiers joints</td>
47 <td colspan="2">
48 {foreach from=$files item=file name=attachs}
3c3a3ce3 49 {imglink img=save alt="Enregistrer" group=$group artid=$artid part=$file->getFilename() text=$file->getFilename()}{if !$smarty.foreach.attachs.last}, {/if}
7027794f 50 {/foreach}
51 </td>
52 </tr>
53 {/if}
54 <tr>
55 <td colspan="3" class="body">
7a5823f9 56 {$body}
7027794f 57 </td>
58 </tr>
59</table>
60
598a1c53 61{* vim:set et sw=2 sts=2 ts=2 enc=utf-8: *}