source: products/qTopic/branches/plone2.1/skins/qtopic/result_csv.pt @ 1

Last change on this file since 1 was 1, checked in by myroslav, 18 years ago

Building directory structure

File size: 1.1 KB
Line 
1<html xmlns="http://www.w3.org/1999/xhtml"
2      xml:lang="en-US"
3      lang="en-US"
4      xmlns:tal="http://xml.zope.org/namespaces/tal"
5      xmlns:metal="http://xml.zope.org/namespaces/metal"
6      xmlns:i18n="http://xml.zope.org/namespaces/i18n"     
7      i18n:domain="plone"
8      metal:use-macro="here/main_template/macros/master">
9
10<body>
11
12<div metal:fill-slot="main">
13    <tal:main-macro metal:define-macro="main"
14           tal:define="size python:here.getObjSize(here);
15                       content_type here/content_type;
16                      ">
17        <h1 tal:content="here/title_or_id" class="documentFirstHeading">
18            Title or id
19        </h1><br/>
20        <div>
21            <a href="export_csv?download=1"
22               tal:attributes="href string:${here/absolute_url}/export_csv?download=1">
23               Download the csv file
24            </a>
25        </div><br/>
26
27        <iframe style="border:none;overflow:visible;height:600px" width="100%"  tal:attributes="src string:${here/absolute_url}/export_csv" />
28
29    </tal:main-macro>
30</div>
31
32</body>
33
34</html>
Note: See TracBrowser for help on using the repository browser.