version fixes
[civicrm-core.git] / templates / CRM / common / print.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
2c4c49ca 3 | CiviCRM version 4.7 |
6a488035 4 +--------------------------------------------------------------------+
e7112fa7 5 | Copyright CiviCRM LLC (c) 2004-2015 |
6a488035
TO
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>
64193b3d 31 <title>{if $pageTitle}{$pageTitle|strip_tags}{else}{ts}Printer-Friendly View{/ts} | {ts}CiviCRM{/ts}{/if}</title>
6a488035 32 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6a488035
TO
33 {crmRegion name='html-header' allowCmsOverride=0}{/crmRegion}
34 <style type="text/css" media="print">@import url({$config->resourceBase}css/print.css);</style>
6a488035
TO
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}">
64193b3d 42{crmRegion name='page-header' allowCmsOverride=0}{/crmRegion}
6a488035 43{* Check for Status message for the page (stored in session->getStatus). Status is cleared on retrieval. *}
6c9f2174 44{include file="CRM/common/status.tpl"}
6a488035 45
64193b3d 46{crmRegion name='page-body' allowCmsOverride=0}
6a488035 47<!-- .tpl file invoked: {$tplFile}. Call via form.tpl if we have a form in the page. -->
b1dd8421 48 {if $isForm and isset($formTpl)}
6a488035 49 {include file="CRM/Form/$formTpl.tpl"}
64193b3d 50 {else}
6a488035 51 {include file=$tplFile}
64193b3d
CW
52 {/if}
53{/crmRegion}
6a488035
TO
54
55
907f5d22
CW
56{crmRegion name='page-footer' allowCmsOverride=0}
57 <script type="text/javascript">
58 window.print();
59 </script>
60{/crmRegion}
6a488035
TO
61</div> {* end crm-container div *}
62</body>
63</html>