More fixing paragraph text quotes etc

This commit is contained in:
2024-09-16 14:01:17 +01:00
parent 265901414c
commit 5fc9f9b763
26 changed files with 199 additions and 216 deletions

View File

@@ -1,6 +1,6 @@
% layout 'default', title => "Sme server 2 - NFS data share", share_dir => './';
%#
%# Generated by SM2Gen version:0.8 Chameleon version:3.8.1 On Python:3.12.3 at 2024-09-14 05:33
%# Generated by SM2Gen version:0.8 Chameleon version:4.5.4 On Python:3.12.3 at 2024-09-16 11:52
%#
% content_for 'module' => begin
<div id="module" class="module Nfsshare-panel">
@@ -17,22 +17,22 @@
%= $c->render_to_string(inline => stash('modul') );
% }
%if (${prefix}_data->{first}) {
%if ($nfs_data->{first}) {
<br><p>
%=$c->render_to_string(inline =>$c->l(${prefix}_data->{first}))
%=$c->render_to_string(inline =>$c->l($nfs_data->{first}))
</p>
%} elsif (${prefix}_data->{success}) {
%} elsif ($nfs_data->{success}) {
<div class='sme-border'>
<h2> Operation Status Report</h2><p>
%= $c->l(${prefix}_data->{success});
%= $c->l($nfs_data->{success});
</p>
</div>
%} elsif (${prefix}_data->{error}) {
%} elsif ($nfs_data->{error}) {
<div class='sme-error'>
<h2> Operation Status Report - error</h2><p>
%= $c->l(${prefix}_data->{error});
%= $c->l($nfs_data->{error});
</p>
</div>
%}
@@ -40,11 +40,11 @@
%#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 (${prefix}_data->{trt} eq "PARAMS") {
% if ($nfs_data->{trt} eq "PARAMS") {
%= include 'partials/_nfs_PARAMS'
%}
% if (${prefix}_data->{trt} eq "TABLE") {
% if ($nfs_data->{trt} eq "TABLE") {
%= include 'partials/_nfs_TABLE'
%}