Subversion Repositories Applications.papyrus

Rev

Rev 1371 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
831 florian 1
<b>{LANG->Attachments}:</b>
2
<table id="phorum-attachment-list" class="PhorumFormTable" cellspacing="0" width="100%">
3
 
4
    <?php $alt = "Alt"; ?>
5
    {ASSIGN LIST POST->attachments}
6
    {LOOP LIST}
7
    <?php $alt = $alt == "" ? "Alt" : "" ;?>
8
    {IF LIST->keep}
9
        <tr>
10
        <td>
11
            {LIST->name} ({LIST->size})
12
        </td>
13
        <td align="right">
14
            {HOOK tpl_editor_attachment_buttons LIST}
15
            <input type="submit" name="detach:{LIST->file_id}"
16
            value="{LANG->Detach}" class="PhorumSubmit" />
17
        </td>
18
        </tr>
19
    {/IF}
20
    {/LOOP LIST}
21
 
22
</table>