Merge remote-tracking branch 'upstream/4.4' into 4.4-master-2014-07-14-13-42-39
[civicrm-core.git] / templates / CRM / Contact / Form / Inline / Website.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
819d0d41 3 | CiviCRM version 4.5 |
6a488035 4 +--------------------------------------------------------------------+
819d0d41 5 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
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 file provides the template for inline editing of websites *}
27{$form.oplock_ts.html}
28<table class="crm-inline-edit-form">
29 <tr>
30 <td colspan="5">
31 <div class="crm-submit-buttons">
32 {include file="CRM/common/formButtons.tpl"}
33 </div>
34 </td>
35 </tr>
36
37 <tr>
38 <td>{ts}Website{/ts}
39 {help id="id-website" file="CRM/Contact/Form/Contact.hlp"}
40 {if $actualBlockCount lt 5 }
41 &nbsp;&nbsp;<span id="add-more-website" title="{ts}click to add more{/ts}"><a class="crm-link-action add-more-inline">{ts}add{/ts}</a></span>
42 {/if}
43 </td>
44 <td>{ts}Website Type{/ts}</td>
45 <td>&nbsp;</td>
46 </tr>
47
48 {section name='i' start=1 loop=$totalBlocks}
49 {assign var='blockId' value=$smarty.section.i.index}
50 <tr id="Website_Block_{$blockId}" {if $blockId gt $actualBlockCount}class="hiddenElement"{/if}>
51 <td>{$form.website.$blockId.url.html|crmAddClass:url}&nbsp;</td>
52 <td>{$form.website.$blockId.website_type_id.html}</td>
53 <td>
54 {if $blockId > 1}
55 <a class="crm-delete-inline crm-link-action" title="{ts}delete website block{/ts}">{ts}delete{/ts}</a>
56 {/if}
57 </td>
58 </tr>
59 {/section}
60</table>
61
62{literal}
63<script type="text/javascript">
3cc60a06 64 CRM.$(function($) {
6a488035
TO
65 // error handling / show hideen elements duing form validation
66 $('tr[id^="Website_Block_"]' ).each( function() {
67 if( $(this).find('td:first span').length > 0 ) {
68 $(this).removeClass('hiddenElement');
69 }
70 });
71 });
72</script>
73{/literal}