comparison simplewiki/templates/index.html @ 3:56ab6b90cd1a

[mq]: post
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 07 Sep 2010 21:29:57 -0700
parents 2464e2051b78
children
comparison
equal deleted inserted replaced
2:2464e2051b78 3:56ab6b90cd1a
10 <body> 10 <body>
11 <ul> 11 <ul>
12 <li py:if="request.path_info != '/'"><a href="..">..</a></li> 12 <li py:if="request.path_info != '/'"><a href="..">..</a></li>
13 <li py:for="f in files"><a href="${f}">${f}</a></li> 13 <li py:for="f in files"><a href="${f}">${f}</a></li>
14 </ul> 14 </ul>
15 <form method="post" enctype="multipart/form-data">
16 <p>Upload a file:</p>
17 <input type="file" name="file"/>
18 <input type="submit"/>
19 </form>
20
15 </body> 21 </body>
16 </html> 22 </html>