Fixed structure for administrative pages
[civicrm-core.git] / templates / CRM / Badge / Page / Layout.tpl
CommitLineData
50998125
KJ
1{*
2 +--------------------------------------------------------------------+
2c4c49ca 3 | CiviCRM version 4.7 |
50998125 4 +--------------------------------------------------------------------+
2a73d3b0 5 | Copyright CiviCRM LLC (c) 2004-2017 |
50998125
KJ
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*}
f6eedce7 26<div class="help">
636f1cbe 27 {ts}Badge Layout screen for creating custom labels{/ts}
50998125
KJ
28</div>
29
30{if $action eq 1 or $action eq 2 or $action eq 8}
31 {include file="CRM/Badge/Form/Layout.tpl"}
32{else}
33
34 {if $rows}
036aa39d 35 <div id="badge-layout" class="crm-content-block crm-block">
50998125
KJ
36 {strip}
37 {* handle enable/disable actions*}
4d17a233 38 {include file="CRM/common/enableDisableApi.tpl"}
50998125
KJ
39 {include file="CRM/common/jsortable.tpl"}
40 <table id="options" class="display">
41 <thead>
42 <tr>
43 <th id="sortable">{ts}Title{/ts}</th>
44 <th id="nosort">{ts}Description{/ts}</th>
45 <th>{ts}Enabled?{/ts}</th>
46 <th>{ts}Default?{/ts}</th>
47 <th></th>
48 </tr>
49 </thead>
50 {foreach from=$rows item=row}
da54ec85 51 <tr id="print_label-{$row.id}" class="crm-entity {cycle values="odd-row,even-row"} {$row.class} crm-badge-layout {if NOT $row.is_active} disabled{/if}">
4d17a233 52 <td class="crm-badge-layout-title crm-editable" data-field="title">{$row.title}</td>
7d644ac8 53 <td class="crm-badge-layout-description crm-editable" data-field="description" data-type="textarea">{$row.description}</td>
50998125
KJ
54 <td id="row_{$row.id}_status" class="crm-badge-layout-is_active">
55 {if $row.is_active eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if}
56 </td>
57 <td class="crm-badge-layout-is_default">
58 {if $row.is_default eq 1}
59 <img src="{$config->resourceBase}i/check.gif" alt="{ts}Default{/ts}"/>
60 {/if}&nbsp;
61 </td>
62 <td>{$row.action|replace:'xx':$row.id}</td>
63 </tr>
64 {/foreach}
65 </table>
66 {/strip}
67
68 {if $action ne 1 and $action ne 2}
69 <div class="action-link">
79571fab 70 {crmButton q="action=add&reset=1" id="newbadge-layout" icon="crm-i fa-plus-circle"}{ts}New Badge Layout{/ts}{/crmButton}
50998125
KJ
71 </div>
72 {/if}
73 </div>
74 {else}
75 <div class="messages status no-popup">
76 <img src="{$config->resourceBase}i/Inform.gif" alt="{ts}status{/ts}"/>
77 {capture assign=crmURL}{crmURL p='civicrm/admin/badgelayout' q="action=add&reset=1"}{/capture}
78 {ts 1=$crmURL}There are no Badge Layout entered for this Contact. You can<a href='%1'>add one</a>.{/ts}
79 </div>
80 {/if}
81{/if}