annotate zpt/JSONHTML_schema_table.zpt @ 262:6613b9204bda

Small bugs
author fknauft
date Tue, 01 Nov 2011 18:04:26 +0100
parents 9ec7e32e8ad3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
70
9ec7e32e8ad3 working on maps
casties
parents: 44
diff changeset
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
9ec7e32e8ad3 working on maps
casties
parents: 44
diff changeset
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
9ec7e32e8ad3 working on maps
casties
parents: 44
diff changeset
3 <html xmlns="http://www.w3.org/1999/xhtml"
9ec7e32e8ad3 working on maps
casties
parents: 44
diff changeset
4 tal:define="layout python:request.get('layout','pre'); element_id python:request.get('element_id',None)
44
c6c47034d2a4 more refactoring of templates
casties
parents: 22
diff changeset
5 schema options/schema; table options/table; data python:here.getTable(schema=schema,table=table);">
22
1a4b56716902 NEW - # 12: create table and upload data
casties
parents:
diff changeset
6 <head>
1a4b56716902 NEW - # 12: create table and upload data
casties
parents:
diff changeset
7 <meta http-equiv="content-type" content="text/html;charset=utf-8">
1a4b56716902 NEW - # 12: create table and upload data
casties
parents:
diff changeset
8 <title tal:content="template/title">The title</title>
1a4b56716902 NEW - # 12: create table and upload data
casties
parents:
diff changeset
9 </head>
1a4b56716902 NEW - # 12: create table and upload data
casties
parents:
diff changeset
10 <body>
44
c6c47034d2a4 more refactoring of templates
casties
parents: 22
diff changeset
11 <pre tal:attributes="id element_id" tal:content="python:here.getJsonString(data)"></pre>
22
1a4b56716902 NEW - # 12: create table and upload data
casties
parents:
diff changeset
12 </body>
1a4b56716902 NEW - # 12: create table and upload data
casties
parents:
diff changeset
13 </html>