Brian Read 3639944078 * Sat May 17 2025 Brian Read <brianr@koozali.org> 11.0.0-1.sme
- Fix $config-> to confg-> in template [SME: 12908]
2025-05-17 12:00:38 +01:00

34 lines
635 B
Plaintext

% layout 'default', title => "Sme server 2 - wbl", share_dir => '';
% content_for 'module' => begin
<div id="module" class="module wbl-panel">
%if (config->{debug} == 1) {
<p>
%= dumper $c->current_route
%= dumper $wbl_datas
</p>
%}
<h1><%= $title %></h1>
<br>
%= l('wbl_WBL_DESCRIPTION')
<br>
% if ($wbl_datas->{trt} eq 'RBL') {
%= include 'partials/_wbl_rbl'
%} elsif ($wbl_datas->{trt} eq 'BLACK') {
%= include 'partials/_wbl_black'
%} elsif ($wbl_datas->{trt} eq 'WHITE') {
%= include 'partials/_wbl_white'
%} else {
%= include 'partials/_wbl_choice'
%}
</div>
%end