annotate zpt/JSONHTML_schema_table.zpt @ 239:95721c5afd0b
show line and polygon-layer
author |
fknauft |
date |
Tue, 06 Sep 2011 10:03:24 +0200 |
parents |
9ec7e32e8ad3 |
children |
|
rev |
line source |
70
|
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3 <html xmlns="http://www.w3.org/1999/xhtml"
|
|
4 tal:define="layout python:request.get('layout','pre'); element_id python:request.get('element_id',None)
|
44
|
5 schema options/schema; table options/table; data python:here.getTable(schema=schema,table=table);">
|
22
|
6 <head>
|
|
7 <meta http-equiv="content-type" content="text/html;charset=utf-8">
|
|
8 <title tal:content="template/title">The title</title>
|
|
9 </head>
|
|
10 <body>
|
44
|
11 <pre tal:attributes="id element_id" tal:content="python:here.getJsonString(data)"></pre>
|
22
|
12 </body>
|
|
13 </html> |