Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 830 → Rev 831

/trunk/client/phorum/bibliotheque/phorum/templates/blog/posting_attachments_list.tpl
New file
0,0 → 1,22
<b>{LANG->Attachments}:</b>
<table id="phorum-attachment-list" class="PhorumFormTable" cellspacing="0" width="100%">
 
<?php $alt = "Alt"; ?>
{ASSIGN LIST POST->attachments}
{LOOP LIST}
<?php $alt = $alt == "" ? "Alt" : "" ;?>
{IF LIST->keep}
<tr>
<td>
{LIST->name} ({LIST->size})
</td>
<td align="right">
{HOOK tpl_editor_attachment_buttons LIST}
<input type="submit" name="detach:{LIST->file_id}"
value="{LANG->Detach}" class="PhorumSubmit" />
</td>
</tr>
{/IF}
{/LOOP LIST}
 
</table>