Can choose to view the message sources
[banana.git] / banana / templates / banana-message.inc.tpl
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)}
9         {imglink group=$group artid=$spool->prevPost($artid) img=prev alt="Message précédent" accesskey=a}{/if}
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)}
13         {imglink group=$group artid=$spool->prevThread($artid) img=prev_thread alt="Discussion précédente" accesskey=q}{/if}
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}
20         {imglink group=$group artid=$artid action="new" img=reply alt="Répondre" accesskey=r}
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}
49       {$file->getFilename()|htmlentities}
50       {imglink img=save alt="Enregistrer" group=$group artid=$artid part=$file->getFilename()}{if !$smarty.foreach.attachs.last}, {/if}
51       {/foreach}
52     </td>
53   </tr>
54   {/if}
55   <tr>
56     <td colspan="3" class="body">
57       {$body}
58     </td>
59   </tr>
60 </table>
61
62 {* vim:set et sw=2 sts=2 ts=2: *}