58 lines
1.4 KiB
Plaintext
58 lines
1.4 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 'default', title => "Sme server 2 - NutUPS configuration", share_dir => './';
|
|
%# css specific to this panel:
|
|
% content_for 'module' => begin
|
|
%= stylesheet '/css/nutups.css'
|
|
%= javascript '/js/nutups.js'
|
|
<div id="module" class="module Nutups-panel">
|
|
|
|
% 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='success '>
|
|
<h2><%=$c->l('nut_Status_Report') %></h2><p>
|
|
%= $c->l($c->stash('success'));
|
|
</p>
|
|
</div>
|
|
|
|
%} elsif ($c->stash('error')) {
|
|
<div class='sme-error'>
|
|
<h2><%=$c->l('nut_Error_Status_Report') %></h2><p>
|
|
%= $c->l($c->stash('error'));
|
|
</p>
|
|
</div>
|
|
%}
|
|
|
|
%#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'
|
|
|
|
% if ($nut_data->{trt} eq "STATUS") {
|
|
%= include 'partials/_nut_STATUS'
|
|
%}
|
|
|
|
% if ($nut_data->{trt} eq "CONFIG") {
|
|
%= include 'partials/_nut_CONFIG'
|
|
%}
|
|
|
|
|
|
|
|
</div>
|
|
%end |