summaryrefslogtreecommitdiff
path: root/templates/my.tmpl
blob: b1fb2ccc73d1c9cbc29e9e469dfc24967f1f54ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#def title: myfiles
#def header: myfiles
#extends templates.base
#def content
<p>Your uploads:</p>
<ul>
#for file in $files
	<li>$file.html</li>
#end for
#if not len($files)
	<li><em>(No file uploads yet.)</em></li>
#end if
</ul>
#end def