Whitespace formatting for formButtons.tpl
[civicrm-core.git] / templates / CRM / common / formButtons.tpl
index 9f869f94d2084cf1eff84003b98b9eafd2433e2b..a264de1eae563d75a53aa8780836d7f900d40083 100644 (file)
    by button and name. crmBtnType grabs type keyword from button name (e.g. 'upload', 'next', 'back', 'cancel') so
    types of buttons can be styled differently via css. *}
 {crmRegion name='form-buttons'}
-  {foreach from=$form.buttons item=button key=key name=btns}
-    {if $key|substring:0:4 EQ '_qf_'}
-        {if $location}
-          {assign var='html' value=$form.buttons.$key.html|crmReplace:id:"$key-$location"}
-        {else}
-          {assign var='html' value=$form.buttons.$key.html}
-        {/if}
-        {crmGetAttribute html=$html attr='crm-icon' assign='icon'}
-        {capture assign=iconPrefix}{$icon|truncate:3:"":true}{/capture}
-        {if $icon && $iconPrefix eq 'fa-'}
-          {assign var='buttonClass' value=' crm-i-button'}
-          {capture assign=iconDisp}<i class="crm-i {$icon}"></i>{/capture}
-        {elseif $icon}
-          {assign var='buttonClass' value=' crm-icon-button'}
-          {capture assign=iconDisp}<span class="crm-button-icon ui-icon-{$icon}"> </span>{/capture}
-        {/if}
-        {crmGetAttribute html=$html attr='disabled' assign='disabled'}
-        <span class="crm-button crm-button-type-{$key|crmBtnType} crm-button{$key}{$buttonClass}{if $disabled} crm-button-disabled{/if}"{if $buttonStyle} style="{$buttonStyle}"{/if}>
-          {$iconDisp}
-          {$html}
-        </span>
+{foreach from=$form.buttons item=button key=key name=btns}
+  {if $key|substring:0:4 EQ '_qf_'}
+    {if $location}
+      {assign var='html' value=$form.buttons.$key.html|crmReplace:id:"$key-$location"}
+    {else}
+      {assign var='html' value=$form.buttons.$key.html}
     {/if}
-  {/foreach}
+    {crmGetAttribute html=$html attr='crm-icon' assign='icon'}
+    {capture assign=iconPrefix}{$icon|truncate:3:"":true}{/capture}
+    {if $icon && $iconPrefix eq 'fa-'}
+      {assign var='buttonClass' value=' crm-i-button'}
+      {capture assign=iconDisp}<i class="crm-i {$icon}"></i>{/capture}
+    {elseif $icon}
+      {assign var='buttonClass' value=' crm-icon-button'}
+      {capture assign=iconDisp}<span class="crm-button-icon ui-icon-{$icon}"> </span>{/capture}
+    {/if}
+    {crmGetAttribute html=$html attr='disabled' assign='disabled'}
+    <span class="crm-button crm-button-type-{$key|crmBtnType} crm-button{$key}{$buttonClass}{if $disabled} crm-button-disabled{/if}"{if $buttonStyle} style="{$buttonStyle}"{/if}>
+      {$iconDisp}
+      {$html}
+    </span>
+  {/if}
+{/foreach}
 {/crmRegion}