diff options
Diffstat (limited to 't/post.t')
-rw-r--r-- | t/post.t | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -13,4 +13,26 @@ <pre> <%= post->text %> </pre> +<% +struct attachment *attachment; + +if(attachment = getattachment(stmt, 0)){ +%> +<h3>Attachments</h3> +<table border="1"> + <% + do{ + %> + <tr> + <td><a href="?attachment=<% printf("%d", attachment->id); %>"><%= attachment->name %></a></td> + <td><%= attachment->mime %></td> + <td><%= attachment->description %></td> + </tr> + <% + }while(attachment = getattachment(stmt, 0)); + %> +</table> +<% +} +%> <% #include "foot.tc" %>
\ No newline at end of file |