diff options
Diffstat (limited to 'httemplate/edit')
-rw-r--r-- | httemplate/edit/contact_class.html | 6 | ||||
-rw-r--r-- | httemplate/edit/process/prospect_main.html | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/httemplate/edit/contact_class.html b/httemplate/edit/contact_class.html index 2e0965dab..1ab52e5d6 100644 --- a/httemplate/edit/contact_class.html +++ b/httemplate/edit/contact_class.html @@ -1,6 +1,10 @@ <% include( 'elements/class_Common.html', - 'name' => 'Contact Class', + 'name' => 'Contact Type', 'table' => 'contact_class', 'nocat' => 1, + 'addl_labels' => { 'classnum' => 'Type number', + 'classname' => 'Type name', + 'disabled' => 'Disable type', + }, ) %> diff --git a/httemplate/edit/process/prospect_main.html b/httemplate/edit/process/prospect_main.html index 49481d44f..7c8cc276e 100644 --- a/httemplate/edit/process/prospect_main.html +++ b/httemplate/edit/process/prospect_main.html @@ -34,7 +34,7 @@ my $args_callback = sub { }; -my @contact_fields = qw( first last title comment emailaddress ); +my @contact_fields = qw( classnum first last title comment emailaddress ); foreach my $phone_type ( qsearch({table=>'phone_type', order_by=>'weight'}) ) { push @contact_fields, 'phonetypenum'.$phone_type->phonetypenum; } |