projects
/
freeside.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
no, patch... not like that
[freeside.git]
/
httemplate
/
elements
/
tr-checkbox.html
1
<% include('tr-td-label.html', @_ ) %>
2
3
<TD <% $style %>>
4
<% include('checkbox.html', @_) %>
5
</TD>
6
7
</TR>
8
9
<%init>
10
11
my %opt = @_;
12
13
my $onchange = $opt{'onchange'}
14
? 'onChange="'. $opt{'onchange'}. '(this)"'
15
: '';
16
17
my $style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : '';
18
19
</%init>