From 3c381762d1fd3d329b53fe82207ec7e501a2dbeb Mon Sep 17 00:00:00 2001 From: Matthew Wire Date: Fri, 10 Apr 2020 18:54:52 +0100 Subject: [PATCH] Add ID to custom group/field admin forms --- templates/CRM/Custom/Page/Field.tpl | 2 ++ templates/CRM/Custom/Page/Group.tpl | 2 ++ 2 files changed, 4 insertions(+) diff --git a/templates/CRM/Custom/Page/Field.tpl b/templates/CRM/Custom/Page/Field.tpl index 8a3c3001cb..01b5cc6114 100644 --- a/templates/CRM/Custom/Page/Field.tpl +++ b/templates/CRM/Custom/Page/Field.tpl @@ -23,6 +23,7 @@ + @@ -36,6 +37,7 @@ {foreach from=$customField item=row} + diff --git a/templates/CRM/Custom/Page/Group.tpl b/templates/CRM/Custom/Page/Group.tpl index 008e50cad2..d430a99f3b 100644 --- a/templates/CRM/Custom/Page/Group.tpl +++ b/templates/CRM/Custom/Page/Group.tpl @@ -28,6 +28,7 @@
{ts}ID{/ts} {ts}Field Label{/ts} {ts}Data Type{/ts} {ts}Field Type{/ts}
{$row.id} {$row.label} {$row.data_type} {$row.html_type}
+ @@ -40,6 +41,7 @@ {foreach from=$rows item=row} + -- 2.25.1
{ts}ID{/ts} {ts}Set{/ts} {ts}Enabled?{/ts} {ts}Used For{/ts}
{$row.id} {$row.title} {if $row.is_active eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if} {if $row.extends eq 'Contact'}{ts}All Contact Types{/ts}{else}{$row.extends_display}{/if}