2024-03-22 14:54:28 +11:00
|
|
|
% layout 'default', title => "Sme server 2 - module";
|
|
|
|
|
|
|
|
% content_for 'module' => begin
|
2025-03-17 12:08:40 +00:00
|
|
|
%= stylesheet '/css/module.css'
|
2024-03-22 14:54:28 +11:00
|
|
|
<div id='module' class='module module-panel'>
|
2025-01-22 11:53:21 +00:00
|
|
|
% if (config->{debug} == 1) {
|
2025-03-17 12:08:40 +00:00
|
|
|
<p>
|
|
|
|
<strong>Debug Info:</strong>
|
|
|
|
<pre><%= dumper $c->current_route %></pre>
|
|
|
|
</p>
|
|
|
|
% }
|
|
|
|
|
|
|
|
% if (stash 'error') {
|
|
|
|
<div class="sme-error">
|
|
|
|
<strong>Error:</strong><br>
|
|
|
|
<%= $c->render_to_string(inline => stash 'error') %>
|
|
|
|
</div>
|
2024-03-22 14:54:28 +11:00
|
|
|
% }
|
2025-03-17 12:08:40 +00:00
|
|
|
|
|
|
|
<h1><%= $title %></h1>
|
|
|
|
|
|
|
|
<div class="module-content">
|
|
|
|
<%= $c->render_to_string(inline => stash 'modul') %>
|
|
|
|
</div>
|
2024-03-22 14:54:28 +11:00
|
|
|
</div>
|
|
|
|
|
2025-03-17 12:08:40 +00:00
|
|
|
% end
|