CRM-13992 : handling multi-custom data listing, edit, add, view actions. reused profi...
[civicrm-core.git] / templates / CRM / Custom / Form / CustomField.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 {assign var="element_name" value=$element.element_name}
27
28 {if $element.help_pre}
29 <tr class="custom_field-help-pre-row {$element.element_name}-row-help-pre">
30 <td>&nbsp;</td>
31 <td class="html-adjust description">{$element.help_pre}</td>
32 </tr>
33 {/if}
34 {if $element.options_per_line != 0 }
35 <tr class="custom_field-row {$element.element_name}-row">
36 <td class="label">{$form.$element_name.label}{if $element.help_post}{help id=$element.id file="CRM/Custom/Form/CustomField.hlp" title=$element.label}{/if}</td>
37 <td class="html-adjust">
38 {assign var="count" value="1"}
39 <table class="form-layout-compressed" style="margin-top: -0.5em;">
40 <tr>
41 {* sort by fails for option per line. Added a variable to iterate through the element array*}
42 {assign var="index" value="1"}
43 {foreach name=outer key=key item=item from=$form.$element_name}
44 {if $index < 10}
45 {assign var="index" value=`$index+1`}
46 {else}
47 <td class="labels font-light">{$form.$element_name.$key.html}</td>
48 {if $count == $element.options_per_line}
49 </tr>
50 <tr>
51 {assign var="count" value="1"}
52 {else}
53 {assign var="count" value=`$count+1`}
54 {/if}
55 {/if}
56 {/foreach}
57 </tr>
58 </table>
59 </td>
60 </tr>
61
62 {else}
63 <tr class="custom_field-row {$element.element_name}-row">
64 <td class="label">{$form.$element_name.label}{if $element.help_post}{help id=$element.id file="CRM/Custom/Form/CustomField.hlp" title=$element.label}{/if}</td>
65 <td class="html-adjust">
66 {if $element.data_type neq 'Date' OR ($element.data_type eq 'Date' AND $element.is_view eq 1)}
67 {$form.$element_name.html}&nbsp;
68 {elseif $element.skip_calendar NEQ true}
69 {include file="CRM/common/jcalendar.tpl" elementName=$element_name}
70 {/if}
71
72 {if $element.data_type eq 'File'}
73 {if $element.element_value.data}
74 <div id="attachStatusMesg_{$element_name}" class="status hiddenElement"></div>
75 <div id="attachFile_{$element_name}">
76 <span class="html-adjust"><br />
77 &nbsp;{ts}Attached File{/ts}: &nbsp;
78 {if $element.element_value.displayURL}
79 <a href="{$element.element_value.displayURL}" class='crm-image-popup'>
80 <img src="{$element.element_value.displayURL}"
81 height = "{$element.element_value.imageThumbHeight}"
82 width="{$element.element_value.imageThumbWidth}">
83 </a>
84 {else}
85 <a href="{$element.element_value.fileURL}">{$element.element_value.fileName}</a>
86 {/if}
87 {if $element.element_value.deleteURL}
88 <a href="#" onclick="showDeleteAttachment('{$element.element_value.fileName}', '{$element.element_value.deleteURLArgs}', {$element.element_value.fid}, '#attachStatusMesg_{$element_name}', '#attachFile_{$element_name}'); return false;" title="{ts}Delete this file{/ts}"><span class="icon red-icon delete-icon" style="margin:0px 0px -5px 20px" title="{ts}Delete this file{/ts}"></span></a>
89 {/if}
90 </span>
91 </div>
92 {/if}
93 {elseif $element.html_type eq 'Autocomplete-Select'}
94 {if $element.data_type eq 'ContactReference'}
95 {include file="CRM/Custom/Form/ContactReference.tpl"}
96 {else}
97 {include file="CRM/Custom/Form/AutoComplete.tpl"}
98 {/if}
99 {/if}
100 </td>
101 </tr>
102
103 {/if}