summaryrefslogtreecommitdiff
path: root/templates/my.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/my.tmpl')
-rw-r--r--templates/my.tmpl14
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/my.tmpl b/templates/my.tmpl
new file mode 100644
index 0000000..b1fb2cc
--- /dev/null
+++ b/templates/my.tmpl
@@ -0,0 +1,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