33 lines
783 B
Plaintext
Raw Permalink Normal View History

2025-04-15 16:30:33 +02:00
% layout 'AdminLTE', title => "Sme server 2 - localnetworks";
% content_for 'module' => begin
2025-04-15 16:30:33 +02:00
<div>
% if (config->{debug} == 1) {
2025-04-15 16:30:33 +02:00
<p>
%= dumper $c->current_route
%= dumper $c->stash("ret")
%= dumper $c->param("localnetwork");
%= dumper $c->stash("ln_datas");
%= dumper $c->param("deletehost");
2025-04-15 16:30:33 +02:00
</p>
% }
<h1><%= $title%></h1>
%= $modul
% if ($ln_datas->{trt} eq 'ADD') {
2025-04-15 16:30:33 +02:00
%= include 'partials/_ln_add'
%} elsif ($ln_datas->{trt} eq 'ADD1') {
2025-04-15 16:30:33 +02:00
%= include 'partials/_ln_add'
%} elsif ($ln_datas->{trt} eq 'DEL') {
2025-04-15 16:30:33 +02:00
%= include 'partials/_ln_del'
%} elsif ($ln_datas->{trt} eq 'DEL1'){
%= include 'partials/_ln_list'
%} else {
%= include 'partials/_ln_list'
%}
</div>
%end