Mercurial > hg > MPIWGWeb
view zpt/edit_imageForm.zpt @ 31:b12d80f033fb
fix feature story number (one-based now).
author | casties |
---|---|
date | Tue, 23 Apr 2013 18:22:27 +0200 |
parents | bca61e893fcc |
children |
line wrap: on
line source
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html metal:use-macro="here/edit_MPIWGProject_main/macros/page"> <head> </head> <body> <tal:block metal:fill-slot="navsel" tal:define="global menusel string:images" /> <tal:block metal:fill-slot="body"> <h3>Edit Image</h3> <form action="editImage" method="post" enctype="multipart/form-data"> <table> <tr><th>Image</th><th>Caption</th></tr> <tr> <td><div tal:content="structure python:here.tag(scale=250.0 / here.height)"/></td> <td><textarea tal:content="structure python:getattr(here,'caption','')" name="caption" rows="3" cols="60"></textarea></td> </tr> <tr> <td><p>Upload new image:<input type="file" name="file" len="50"/></p></td> </tr> </table> <p> <input type="submit" value="submit"/> </p> </form> <h3><a href="../manageImages">Back to image list</a></h3> </tal:block> </body> </html>