SM2Gen/Targets/DiskUsage/diskusage.html.ep

53 lines
1.2 KiB
Plaintext
Raw Normal View History

2024-09-12 20:48:08 +02:00
%#
%# Generated by SM2Gen version:0.8 Chameleon version:4.5.4 On Python:3.12.3 at 2024-09-22 11:30:26
2024-09-12 20:48:08 +02:00
%#
% layout 'default', title => "Sme server 2 - Disk Usage", share_dir => './';
%# css specific to this panel:
2024-09-12 20:48:08 +02:00
% content_for 'module' => begin
%= stylesheet '/css/diskusage.css'
<div id="module" class="module DiskUsage-panel">
2024-09-12 20:48:08 +02:00
% if ($config->{debug} == 1) {
<p>
%= dumper $c->current_route
</p>
% }
<h1><%=$title%></h1>
% if ( stash('modul') ) {
%= $c->render_to_string(inline => stash('modul') );
% }
%if ($du_data->{first}) {
2024-09-12 20:48:08 +02:00
<br><p>
%=$c->render_to_string(inline =>$c->l($du_data->{first}))
2024-09-12 20:48:08 +02:00
</p>
%} elsif ($du_data->{success}) {
2024-09-12 20:48:08 +02:00
<div class='sme-border'>
<h2> Operation Status Report</h2><p>
%= $c->l($du_data->{success});
2024-09-12 20:48:08 +02:00
</p>
</div>
%} elsif ($du_data->{error}) {
2024-09-12 20:48:08 +02:00
<div class='sme-error'>
<h2> Operation Status Report - error</h2><p>
%= $c->l($du_data->{error});
2024-09-12 20:48:08 +02:00
</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 ($du_data->{trt} eq "PARAMS") {
2024-09-12 20:48:08 +02:00
%= include 'partials/_du_PARAMS'
%}
</div>
%end