SM2Gen/Targets/CreateStarterWebsite/createstarterwebsite.html.ep

53 lines
1.3 KiB
Plaintext
Raw Permalink Normal View History

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