Merge pull request #1230 from davecivicrm/CRM-13107
[civicrm-core.git] / templates / CRM / Badge / Form / Layout.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 {* this template is used for adding/editing badge layouts *}
27 <h3>{if $action eq 1}{ts}New Badge Layout{/ts}{elseif $action eq 2}{ts}Edit Badge Layout{/ts}{else}{ts}Delete Badge Layout{/ts}{/if}</h3>
28 <div class="crm-block crm-form-block crm-badge-layout-form-block">
29 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="top"}</div>
30 {if $action eq 8}
31 <div class="messages status no-popup">
32 <div class="icon inform-icon"></div>
33 {ts}This may mean the loss of a substantial amount of data, and the action cannot be undone.{/ts} {ts}Do you want to continue?{/ts}
34 </div>
35 {else}
36 <table class="form-layout-compressed">
37 <tr class="crm-badge-layout-form-block-title">
38 <td class="label">{$form.title.label}</td>
39 <td>{$form.title.html}</td>
40 </tr>
41 <tr class="crm-badge-layout-form-block-label_format_name">
42 <td class="label">{$form.label_format_name.label}</td>
43 <td>{$form.label_format_name.html} {help id="id-label_format"}</td>
44 </tr>
45 <tr class="crm-badge-layout-form-block-description">
46 <td class="label">{$form.description.label}</td>
47 <td>{$form.description.html}</td>
48 </tr>
49 <tr class="crm-badge-layout-form-block-image_1">
50 <td class="label">{$form.image_1.label}</td>
51 <td>
52 {$form.image_1.html}
53 <span class="crm-clear-link">
54 (<a href="#" class="clear-image" imgname='image_1'>{ts}clear{/ts}</a>)
55 </span>
56 <br/><span class="description">{ts}Click above and select a file by double clicking on it.{/ts}</span>
57 </td>
58 </tr>
59 <tr class="crm-badge-layout-form-block-image_2">
60 <td class="label">{$form.image_2.label}</td>
61 <td>
62 {$form.image_2.html}
63 <span class="crm-clear-link">
64 (<a href="#" class="clear-image" imgname='image_2'>{ts}clear{/ts}</a>)
65 </span>
66 <br/><span class="description">{ts}Click above and select a file by double clicking on it.{/ts}</span>
67 </td>
68 </tr>
69 <tr class="crm-badge-layout-form-block-elements">
70 <td class="label">{ts}Elements{/ts}</td>
71 <td>
72 <table class="form-layout-compressed">
73 <tr>
74 <td>{ts}Row{/ts}</td>
75 <td>{ts}Label{/ts}</td>
76 <td>{ts}Font{/ts}</td>
77 <td>{ts}Size{/ts}</td>
78 <td>{ts}Alignment{/ts}</td>
79 </tr>
80 {section name='i' start=1 loop=$rowCount}
81 {assign var='rowNumber' value=$smarty.section.i.index}
82 <tr>
83 <td>#{$rowNumber}</td>
84 <td>{$form.token.$rowNumber.html|crmAddClass:twenty}</td>
85 <td>{$form.font_name.$rowNumber.html}</td>
86 <td>{$form.font_size.$rowNumber.html}</td>
87 <td>{$form.text_alignment.$rowNumber.html}</td>
88 </tr>
89 {/section}
90 </table>
91 </td>
92 </tr>
93 <tr class="crm-badge-layout-form-block-add_barcode">
94 <td class="label">{$form.add_barcode.label}</td>
95 <td>{$form.add_barcode.html}&nbsp;&nbsp;&nbsp;{ts}of type{/ts}&nbsp;&nbsp;&nbsp;
96 {$form.barcode_type.html}&nbsp;&nbsp;&nbsp;{ts}on{/ts}&nbsp;&nbsp;&nbsp;{$form.barcode_alignment.html}
97 </td>
98 </tr>
99 <tr class="crm-badge-layout-form-block-is_active">
100 <td class="label">{$form.is_active.label}</td>
101 <td>{$form.is_active.html}</td>
102 </tr>
103 <tr class="crm-badge-layout-form-block-is_default">
104 <td class="label">{$form.is_default.label}</td>
105 <td>{$form.is_default.html}</td>
106 </tr>
107 <tr class="crm-badge-layout-form-block-is_reserved">
108 <td class="label">{$form.is_reserved.label}</td>
109 <td>{$form.is_reserved.html}</td>
110 </tr>
111 </table>
112 {/if}
113 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="bottom"}</div>
114 </div>