summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-pickcolor.html
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/elements/tr-pickcolor.html')
-rw-r--r--httemplate/elements/tr-pickcolor.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/httemplate/elements/tr-pickcolor.html b/httemplate/elements/tr-pickcolor.html
new file mode 100644
index 0000000..2b6cc23
--- /dev/null
+++ b/httemplate/elements/tr-pickcolor.html
@@ -0,0 +1,11 @@
+<% include('tr-td-label.html', @_ ) %>
+ <TD <% $colspan %> <% $cell_style %> ID="<% $opt{input_id} || $opt{id}.'_input0' %>"><% include('pickcolor.html', @_ ) %></TD>
+<%init>
+
+my %opt = @_;
+
+my $cell_style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : '';
+
+my $colspan = $opt{'colspan'} ? 'COLSPAN="'.$opt{'colspan'}.'"' : '';
+
+</%init>