diff --git a/templates/CRM/Admin/Page/LabelFormats.tpl b/templates/CRM/Admin/Page/LabelFormats.tpl index 4a4142f5f80c..5fc325d67333 100644 --- a/templates/CRM/Admin/Page/LabelFormats.tpl +++ b/templates/CRM/Admin/Page/LabelFormats.tpl @@ -51,7 +51,7 @@ {$row.label} {$row.groupName} - {$row.weight} + {$row.weight|smarty:nodefaults} {$row.grouping} {icon condition=$row.is_default}{ts}Default{/ts}{/icon}  {if $row.is_reserved eq 1}{ts}Yes{/ts}{else}{ts}No{/ts}{/if} diff --git a/templates/CRM/Admin/Page/ParticipantStatusType.tpl b/templates/CRM/Admin/Page/ParticipantStatusType.tpl index a32d84cd41ba..b5b8aec35ae9 100644 --- a/templates/CRM/Admin/Page/ParticipantStatusType.tpl +++ b/templates/CRM/Admin/Page/ParticipantStatusType.tpl @@ -36,7 +36,7 @@ {icon condition=$row.is_reserved}{ts}Reserved{/ts}{/icon} {if $row.is_active eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if} {icon condition=$row.is_counted}{ts}Counted{/ts}{/icon} - {$row.weight} + {$row.weight|smarty:nodefaults} {$row.visibility} {$row.action|replace:'xx':$row.id} diff --git a/templates/CRM/Admin/Page/PdfFormats.tpl b/templates/CRM/Admin/Page/PdfFormats.tpl index b715a07bca0b..6b6ac5a7de4d 100644 --- a/templates/CRM/Admin/Page/PdfFormats.tpl +++ b/templates/CRM/Admin/Page/PdfFormats.tpl @@ -51,7 +51,7 @@ {$row.name} {$row.description} {icon condition=$row.is_default}{ts}Default{/ts}{/icon}  - {$row.weight} + {$row.weight|smarty:nodefaults} {$row.action|replace:'xx':$row.id} {/foreach} diff --git a/templates/CRM/Campaign/Page/SurveyType.tpl b/templates/CRM/Campaign/Page/SurveyType.tpl index 1a1f1616edab..c467c9301ce6 100644 --- a/templates/CRM/Campaign/Page/SurveyType.tpl +++ b/templates/CRM/Campaign/Page/SurveyType.tpl @@ -32,7 +32,7 @@ {$row.label} {$row.value} {if !empty($row.description)}{$row.description}{/if} - {$row.weight} + {$row.weight|smarty:nodefaults} {if $row.is_reserved eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if} {if $row.is_active eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if} {$row.action|replace:'xx':$row.id} diff --git a/templates/CRM/Contribute/Page/Premium.tpl b/templates/CRM/Contribute/Page/Premium.tpl index 18a30af04267..d223c9df9428 100644 --- a/templates/CRM/Contribute/Page/Premium.tpl +++ b/templates/CRM/Contribute/Page/Premium.tpl @@ -34,7 +34,7 @@ {$row.min_contribution|crmMoney} {$row.cost|crmMoney} {$row.financial_type} - {$row.weight} + {$row.weight|smarty:nodefaults} {$row.action} {/foreach} diff --git a/templates/CRM/Member/Page/MembershipStatus.tpl b/templates/CRM/Member/Page/MembershipStatus.tpl index be341b04bdb3..99decbbd2406 100644 --- a/templates/CRM/Member/Page/MembershipStatus.tpl +++ b/templates/CRM/Member/Page/MembershipStatus.tpl @@ -46,7 +46,7 @@ {if !empty($row.end_event_adjust_interval)}{$row.end_event_adjust_interval}{/if} {if $row.is_current_member eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if} {if $row.is_admin eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if} - {$row.weight} + {$row.weight|smarty:nodefaults} {if $row.is_reserved eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if} {if !empty($row.action)}{$row.action|replace:'xx':$row.id}{/if} diff --git a/templates/CRM/Member/Page/MembershipType.tpl b/templates/CRM/Member/Page/MembershipType.tpl index 995505994182..09cd8792eb99 100644 --- a/templates/CRM/Member/Page/MembershipType.tpl +++ b/templates/CRM/Member/Page/MembershipType.tpl @@ -47,7 +47,7 @@ {$row.relationshipTypeName} {$row.max_related} {$row.visibility} - {$row.weight} + {$row.weight|smarty:nodefaults} {if $row.is_active eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if} {$row.action|replace:'xx':$row.id} diff --git a/templates/CRM/Price/Page/Field.tpl b/templates/CRM/Price/Page/Field.tpl index 9b6153ec046c..012c40138ac2 100644 --- a/templates/CRM/Price/Page/Field.tpl +++ b/templates/CRM/Price/Page/Field.tpl @@ -61,7 +61,7 @@ {$row.label} {$row.html_type_display} - {$row.weight} + {$row.weight|smarty:nodefaults} {if $row.is_required eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if} {if $row.is_active eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if} {if $row.active_on}{$row.active_on|crmDate}{/if} diff --git a/templates/CRM/Price/Page/Option.tpl b/templates/CRM/Price/Page/Option.tpl index 7889a67cd22c..99dcb4225854 100644 --- a/templates/CRM/Price/Page/Option.tpl +++ b/templates/CRM/Price/Page/Option.tpl @@ -70,7 +70,7 @@ {/if} {icon condition=$row.is_default}{ts}Default{/ts}{/icon} {$row.financial_type_id} - {$row.weight} + {$row.weight|smarty:nodefaults} {if $getTaxDetails} {if $row.tax_rate != '' } {$taxTerm} ({$row.tax_rate}%) diff --git a/templates/CRM/Report/Page/Options.tpl b/templates/CRM/Report/Page/Options.tpl index 33d26800408f..0c2501cf6bb3 100644 --- a/templates/CRM/Report/Page/Options.tpl +++ b/templates/CRM/Report/Page/Options.tpl @@ -43,7 +43,7 @@ {$row.label} {$row.value} {$row.description} - {$row.weight} + {$row.weight|smarty:nodefaults} {if !empty($showIsDefault)} {$row.default_value} {/if} diff --git a/templates/CRM/UF/Page/Field.tpl b/templates/CRM/UF/Page/Field.tpl index 64f0b23ab2ec..78b812e5c8fc 100644 --- a/templates/CRM/UF/Page/Field.tpl +++ b/templates/CRM/UF/Page/Field.tpl @@ -49,7 +49,7 @@ {if $row.is_searchable eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if} {if $row.in_selector eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if} {/if} - {$row.weight} + {$row.weight|smarty:nodefaults} {if $row.is_required eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if} {if $row.is_view eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if} {if $row.is_reserved eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if}