Merge pull request #1113 from deepak-srivastava/reportsapi
[civicrm-core.git] / templates / CRM / common / print.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.3 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2013 |
6 +--------------------------------------------------------------------+
7 | This file is a part of CiviCRM. |
8 | |
9 | CiviCRM is free software; you can copy, modify, and distribute it |
10 | under the terms of the GNU Affero General Public License |
11 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
12 | |
13 | CiviCRM is distributed in the hope that it will be useful, but |
14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
16 | See the GNU Affero General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU Affero General Public |
19 | License and the CiviCRM Licensing Exception along |
20 | with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25 *}
26 {* Print.tpl: wrapper for Print views. Provides complete HTML doc. Includes print media stylesheet.*}
27 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
28 <html xmlns="http://www.w3.org/1999/xhtml" lang="{$config->lcMessages|truncate:2:"":true}" xml:lang="{$config->lcMessages|truncate:2:"":true}">
29
30 <head>
31 <title>{if $pageTitle}{$pageTitle|strip_tags}{else}{ts}Printer-Friendly View{/ts} | {ts}CiviCRM{/ts}{/if}</title>
32 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
33 {crmRegion name='html-header' allowCmsOverride=0}{/crmRegion}
34 <style type="text/css" media="print">@import url({$config->resourceBase}css/print.css);</style>
35 </head>
36
37 <body>
38 {if $config->debug}
39 {include file="CRM/common/debug.tpl"}
40 {/if}
41 <div id="crm-container" class="crm-container" lang="{$config->lcMessages|truncate:2:"":true}" xml:lang="{$config->lcMessages|truncate:2:"":true}">
42 {crmRegion name='page-header' allowCmsOverride=0}{/crmRegion}
43 {* Check for Status message for the page (stored in session->getStatus). Status is cleared on retrieval. *}
44 {if $session->getStatus(false)}
45 <div class="messages status no-popup">
46 <div class="icon inform-icon"></div>
47 {$session->getStatus(true)}
48 </div>
49 {/if}
50
51 {crmRegion name='page-body' allowCmsOverride=0}
52 <!-- .tpl file invoked: {$tplFile}. Call via form.tpl if we have a form in the page. -->
53 {if $isForm}
54 {include file="CRM/Form/$formTpl.tpl"}
55 {else}
56 {include file=$tplFile}
57 {/if}
58 {/crmRegion}
59
60
61 {crmRegion name='page-footer' allowCmsOverride=0}{/crmRegion}
62 </div> {* end crm-container div *}
63 </body>
64 </html>