2025-06-19 17:58:31 +02:00

67 lines
1.6 KiB
Plaintext

%#
%# Generated by SM2Gen version:0.9(20Jan2025) Chameleon version:4.5.4 On Python:3.12.3 at 2025-01-20 16:21:33
%#
% layout 'AdminLTE', title => "Sme server 2 - NutUPS configuration", share_dir => './';
%# css specific to this panel:
% content_for 'module' => begin
<div class="card-body">
% if (config->{debug} == 1) {
<pre>
%= dumper $c->current_route
%= dumper $nut_data->{trt}
</pre>
% }
<h1><%=$title%></h1>
% if ( stash('modul')) {
<%= $c->render_to_string(inline => stash('modul') ); %>
% }
%if ($c->stash('first')) {
<br><p>
<%=$c->render_to_string(inline =>$c->l($c->stash('first'))) %>
</p>
%} elsif ($c->stash('success')) {
<div class="text-success">
<h2><%=$c->l('nut_Status_Report') %></h2>
<div>
<%= $c->l($c->stash('success')); %>
</div>
</div>
<br>
%} elsif ($c->stash('error')) {
<div class="text-danger">
<h2><%=$c->l('nut_Error_Status_Report') %></h2>
<div>
<%= $c->l($c->stash('error')); %>
</div>
</div>
<br>
%}
%#Routing to partials according to trt parameter.
%#This ought to be cascading if/then/elsif, but is easier to just stack the if/then's rather like a case statement'
<br>
% if ($nut_data->{trt} eq "STATUS") {
<%= include 'partials/_nut_STATUS' %>
%}
<br>
% if ($nut_data->{trt} eq "CONFIG") {
<%= include 'partials/_nut_CONFIG' %>
%}
</div>
%end