Mercurial > hg > ZDBInterface
view zpt/HTML_schema_usertables.zpt @ 22:7ee835840724 default tip
fix problem with config page when autocommit is not defined.
author | casties |
---|---|
date | Wed, 24 Apr 2013 20:49:42 +0200 |
parents | 09361041be51 |
children |
line wrap: on
line source
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" tal:define="layout python:request.get('layout','table'); element_id python:request.get('element_id',None); schema python:options.get('schema','public'); data python:here.getListOfUserTables(schema)"> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <title tal:content="template/title">The title</title> </head> <body> <h2>List of user tables for schema <span tal:replace="schema"/></h2> <tal:block tal:condition="python:layout=='select'"> <select tal:attributes="id element_id"> <option tal:repeat="tbl data/rows" tal:content="python:tbl[0]"/> </select> </tal:block> <tal:block tal:condition="python:layout=='table'"> <table tal:attributes="id element_id"> <tr tal:repeat="row data/rows"> <td><a tal:define="tbl python:row[0]" tal:attributes="href tbl" tal:content="tbl"/></td> </tr> </table> </tal:block> </body> </html>