summaryrefslogtreecommitdiff
path: root/templates/images.tmpl
blob: 4cd3752aa129ac86baa060f0a3d98b2fad7c4e60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#def title: images
#def header: images
#extends templates.base
#def content
<p>You have $len($files) uploaded images totaling $total_size.</p>
<ul class="image-list">
#for file in $files
	<li>$file.image_html</li>
#end for
#if not len($files)
	<li><em>(No image uploads yet.)</em></li>
#end if
</ul>
#end def