diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2016-08-02 00:07:01 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2016-08-02 00:07:01 -0500 |
commit | 4f3d9e2ef5ce5305363ae426b87ed2b873b355d8 (patch) | |
tree | 9bcca596330619cfd2e22b5cc73c33705157a93b /httemplate/elements/tr-selectlayersx.html | |
parent | d406868577ff4df701bc3fe6ef9c0ab6f0e72999 (diff) |
RT#27396: Why does it take so long for the New/Edit billing event pages to load? [stable checkpoint, work in progress]
Diffstat (limited to 'httemplate/elements/tr-selectlayersx.html')
-rw-r--r-- | httemplate/elements/tr-selectlayersx.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/httemplate/elements/tr-selectlayersx.html b/httemplate/elements/tr-selectlayersx.html new file mode 100644 index 000000000..ca7a36079 --- /dev/null +++ b/httemplate/elements/tr-selectlayersx.html @@ -0,0 +1,25 @@ +% unless ( $opt{js_only} ) { + + <% include('tr-td-label.html', @_ ) %> + + <TD <% $style %>> + +% } + + <% include('selectlayersx.html', @_ ) %> + +% unless ( $opt{js_only} ) { + + </TD> + + </TR> + +% } + +<%init> + +my %opt = @_; + +my $style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : ''; + +</%init> |