Merge pull request #14608 from eileenmcnaughton/csv_test
[civicrm-core.git] / templates / CRM / common / print.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
fee14197 3 | CiviCRM version 5 |
6a488035 4 +--------------------------------------------------------------------+
6b83d5bd 5 | Copyright CiviCRM LLC (c) 2004-2019 |
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" />
46b8fa9d 33 <meta name="ROBOTS" content="NOINDEX, NOFOLLOW">
6a488035
TO
34 {crmRegion name='html-header' allowCmsOverride=0}{/crmRegion}
35 <style type="text/css" media="print">@import url({$config->resourceBase}css/print.css);</style>
6a488035
TO
36</head>
37
38<body>
39{if $config->debug}
40 {include file="CRM/common/debug.tpl"}
41{/if}
42<div id="crm-container" class="crm-container" lang="{$config->lcMessages|truncate:2:"":true}" xml:lang="{$config->lcMessages|truncate:2:"":true}">
64193b3d 43{crmRegion name='page-header' allowCmsOverride=0}{/crmRegion}
6a488035 44{* Check for Status message for the page (stored in session->getStatus). Status is cleared on retrieval. *}
6c9f2174 45{include file="CRM/common/status.tpl"}
6a488035 46
64193b3d 47{crmRegion name='page-body' allowCmsOverride=0}
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>