Parent: [3abb2e] (diff)

Child: [7af05e] (diff)

Download this file

attachment.html    16 lines (15 with data), 489 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
<div xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/">
<hr/>
<div py:if="value.is_image()" class="attachment_thumb">
<a href="${value.url()}"><img src="${value.url()}/thumb"/></a>
<br/>
<a href="${value.url()}">$value.metadata.filename</a>
($value.length) bytes)
</div>
<div py:if="not value.is_image()">
<a href="${value.url()}">$value.metadata.filename</a>
($value.length) bytes)
</div>
<br style="clear:both"/>
</div>