Merge pull request #2006 from civicrm/4.3
[civicrm-core.git] / templates / CRM / Badge / Form / Layout.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.4 |
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 <table>
53 <tr>
54 <td>{$form.image_1.html}
55 <span class="crm-clear-link">
56 (<a href="#" class="clear-image" imgname='image_1'>{ts}clear{/ts}</a>)
57 </span><br/>
58 <span class="description">{ts}Click above and select a file by double clicking on it.{/ts}</span>
59 </td>
60 <td>
61 {$form.width_image_1.html}<br/>{$form.width_image_1.label}
62 </td>
63 <td>
64 {$form.height_image_1.html}</br>{$form.height_image_1.label}
65 </td>
66 </tr>
67 </table>
68 </td>
69 </tr>
70 <tr class="crm-badge-layout-form-block-image_2">
71 <td class="label">{$form.image_2.label}</td>
72 <td>
73 <table>
74 <tr>
75 <td>{$form.image_2.html}
76 <span class="crm-clear-link">
77 (<a href="#" class="clear-image" imgname='image_2'>{ts}clear{/ts}</a>)
78 </span><br/>
79 <span class="description">{ts}Click above and select a file by double clicking on it.{/ts}</span>
80 </td>
81 <td>
82 {$form.width_image_2.html}<br/>{$form.width_image_2.label}
83 </td>
84 <td>
85 {$form.height_image_2.html}<br/>{$form.height_image_2.label}
86 </td>
87 </tr>
88 </table>
89 </td>
90 </tr>
91 <tr class="crm-badge-layout-form-block-elements">
92 <td class="label">{ts}Elements{/ts}</td>
93 <td>
94 <table class="form-layout-compressed">
95 <tr>
96 <td>{ts}Row{/ts}</td>
97 <td>{ts}Label{/ts}</td>
98 <td>{ts}Font{/ts}</td>
99 <td>{ts}Size{/ts}</td>
100 <td>{ts}Style{/ts}</td>
101 <td>{ts}Alignment{/ts}</td>
102 </tr>
103 {section name='i' start=1 loop=$rowCount}
104 {assign var='rowNumber' value=$smarty.section.i.index}
105 <tr>
106 <td>#{$rowNumber}</td>
107 <td>{$form.token.$rowNumber.html|crmAddClass:twenty}</td>
108 <td>{$form.font_name.$rowNumber.html}</td>
109 <td>{$form.font_size.$rowNumber.html}</td>
110 <td>{$form.font_style.$rowNumber.html}</td>
111 <td>{$form.text_alignment.$rowNumber.html}</td>
112 </tr>
113 {/section}
114 </table>
115 </td>
116 </tr>
117 <tr class="crm-badge-layout-form-block-add_barcode">
118 <td class="label">{$form.add_barcode.label}</td>
119 <td>{$form.add_barcode.html}&nbsp;&nbsp;&nbsp;{ts}of type{/ts}&nbsp;&nbsp;&nbsp;
120 {$form.barcode_type.html}&nbsp;&nbsp;&nbsp;{ts}on{/ts}&nbsp;&nbsp;&nbsp;{$form.barcode_alignment.html}
121 </td>
122 </tr>
123 <tr class="crm-badge-layout-form-block-is_active">
124 <td class="label">{$form.is_active.label}</td>
125 <td>{$form.is_active.html}</td>
126 </tr>
127 <tr class="crm-badge-layout-form-block-is_default">
128 <td class="label">{$form.is_default.label}</td>
129 <td>{$form.is_default.html}</td>
130 </tr>
131 <tr class="crm-badge-layout-form-block-is_reserved">
132 <td class="label">{$form.is_reserved.label}</td>
133 <td>{$form.is_reserved.html}</td>
134 </tr>
135 </table>
136 {/if}
137 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="bottom"}</div>
138 </div>