diff options
Diffstat (limited to 'httemplate/edit')
-rw-r--r-- | httemplate/edit/part_tag.html | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/httemplate/edit/part_tag.html b/httemplate/edit/part_tag.html index 56ba5672c..319063fea 100644 --- a/httemplate/edit/part_tag.html +++ b/httemplate/edit/part_tag.html @@ -4,11 +4,11 @@ 'fields' => [ 'tagname', { field=>'disabled', type=>'checkbox', value=>'Y' }, 'tagdesc', - 'tagcolor' + $tagcolor, ], 'labels' => { 'tagnum' => 'Tag #', 'tagname' => 'Tag', - 'tagdesc' => 'Description', + 'tagdesc' => 'Message', 'tagcolor' => 'Highlight Color', 'disabled' => 'Disabled', }, @@ -20,12 +20,9 @@ die "access denied" unless $FS::CurrentUser::CurrentUser->access_right('Configuration'); -#FF6666 red -#FF9966 orange -#FFFF66 yellow -#66FF66 green -#66FFFF cyan? -#6666FF blue -#FF66FF purple? looks more like pink. CC66FF? +my $tagcolor = { + field => 'tagcolor', + type => 'pickcolor', +}; </%init> |