Import from SVN (r45945, r596)
[civicrm-core.git] / templates / CRM / Grant / Page / Tab.tpl
CommitLineData
6a488035
TO
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{if $action eq 1 or $action eq 2 or $action eq 8 }{* add, update or delete *}
27 {include file="CRM/Grant/Form/Grant.tpl"}
28{elseif $action eq 4 }
29 {include file="CRM/Grant/Form/GrantView.tpl"}
30{else}
31 <div class="view-content">
32 {if $permission EQ 'edit'}
33 {capture assign=newGrantURL}{crmURL p="civicrm/contact/view/grant" q="reset=1&action=add&cid=`$contactId`&context=grant"}{/capture}
34 {/if}
35
36 <div id="help">
37 <p>{ts 1=$displayName}This page lists all grants for %1 since inception.{/ts}
38 {if $permission EQ 'edit'}
39 {ts 1=$newGrantURL}Click <a accesskey='N' href='%1'>Add Grant</a> to record a Grant for this contact.{/ts}
40 {/if}
41 </p>
42 </div>
43{if $action eq 16 and $permission EQ 'edit'}
44 <div class="action-link">
45 <a href="{$newGrantURL}" class="button"><span><div class="icon add-icon"></div>{ts}Add Grant{/ts}</span></a><br/><br/>
46 </div>
47 {/if}
48 {if $rows}
49
50 {include file="CRM/Grant/Form/Selector.tpl"}
51 {else}
52 <div class="messages status">
53 <div class="icon inform-icon"></div>&nbsp;
54 {ts}No grants have been recorded for this contact.{/ts}
55 </div>
56 {/if}
57 </div>
58{/if}