33 lines
599 B
Plaintext
Raw Normal View History

2025-04-15 16:30:33 +02:00
% layout 'AdminLTE', title => "Sme server 2 - quota";
% content_for 'module' => begin
2025-04-18 15:11:03 +02:00
<div class="card-body">
% if (config->{debug} == 1) {
2025-05-16 11:57:27 +02:00
<div>
%= dumper $c->current_route
%= dumper $quo_datas
</div>
% }
% if ( stash 'error' ) {
2025-05-16 11:57:27 +02:00
<br>
<div class="text-danger">
<%= $c->render_to_string(inline => stash 'error') %>
</div>
% }
<h1><%= $title%></h1>
% if ($quo_datas->{trt} eq 'UPD') {
2025-05-16 11:57:27 +02:00
<%= include 'partials/_quo_upd' %>
% } else {
<%= include 'partials/_quo_list' %>
% }
</div>
2025-05-16 11:57:27 +02:00
%end