Merge branch 'master' of https://github.com/odoo/odoo
[odoo/odoo.git] / addons / report_webkit / report / webkit_report_demo.mako
1 <!DOCTYPE html>
2 <html>
3 <head>
4     <style type="text_css">${css}</style>
5 </head>
6 <body>
7     <h1>List of reports:</h1>
8     <ul>
9     % for report in objects:
10         <li>${report.name}</li>
11     % endfor
12     </ul>
13
14     <p>The administrator name is: ${admin_name}</p>
15     <p>If this report does not contain headers, it is because you have a badly compiled wkhtmltopdf. Consider installing
16         the static version distributed on the official web site: <a href="https://code.google.com/p/wkhtmltopdf/">https://code.google.com/p/wkhtmltopdf/</a>.</p>
17 </body>
18 </html>