summaryrefslogtreecommitdiff
path: root/templates/images.tmpl
blob: 34c8e78299654e1d97eda6b078e712a82d2610ab (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>Your uploaded images:</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