<html xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="context/main_template/macros/master"> <head> <title>image edit template</title> <meta http-equiv="content-type" content="text/html;charset=UTF-8"/> </head> <body> <div metal:fill-slot="header"> <div metal:use-macro="here/widgets/macros/generic_header"> generic_header macro </div> </div> <div metal:fill-slot="main" i18n:domain="cmf_default" tal:define="form options/form" tal:omit-tag=""> <div class="Desktop"> <form action="image_edit_form" method="post" enctype="multipart/form-data" tal:attributes="action form/action"> <table class="FormLayout"> <tr> <th i18n:translate=""> Upload image </th> <td> <input type="file" name="file" size="25" /> </td> </tr> <tr> <td> Â </td> <td> <metal:macro metal:use-macro="context/form_widgets/macros/buttons" /> </td> </tr> </table> </form> </div> </div> </body> </html>