68 lines
2.1 KiB
Plaintext
68 lines
2.1 KiB
Plaintext
% layout 'AdminLTE', title => "Sme server 2 - directory";
|
|
|
|
% content_for 'module' => begin
|
|
|
|
<div class="card-body">
|
|
|
|
%if (config->{debug} == 1) {
|
|
<div>
|
|
(DBG)route: <%= $c->current_route %><br>
|
|
(DBG)dir. access: <%= $dir_datas->{access}%><br>
|
|
</div>
|
|
% }
|
|
|
|
<h1><%= $title %></h1>
|
|
<br>
|
|
<%= $modul %>
|
|
<% my $btn = l('SAVE'); %>
|
|
|
|
<form action="/smanager/directory" method="POST">
|
|
<br>
|
|
<div>
|
|
<div>
|
|
<%= l('dir_LABEL_ROOT') %>
|
|
<%= $dir_datas->{root} %>
|
|
</div>
|
|
<div>
|
|
<%= l 'dir_DESC_DIRECTORY_ACCESS' %>
|
|
<br>
|
|
<%= l 'dir_DIRECTORY_ACCESS' %>
|
|
% param 'access' => $dir_datas->{access} unless param 'access';
|
|
<%= select_field 'access' => [[ (l 'NETWORKS_ALLOW_LOCAL') => 'private'], [ (l 'NETWORKS_ALLOW_PUBLIC') => 'public']] %>
|
|
</div>
|
|
<div>
|
|
<%= l 'dir_DESC_DEPARTMENT' %>
|
|
<br><br>
|
|
<%= l 'dir_DEPARTMENT' %>
|
|
%= text_field 'department' => $dir_datas->{department}
|
|
</div>
|
|
<div>
|
|
<%= l 'dir_COMPANY' %>
|
|
<%= text_field 'company', $dir_datas->{company} %>
|
|
</div>
|
|
<div>
|
|
<%= l 'dir_STREET'
|
|
<%= text_field 'street' => $dir_datas->{street} %>
|
|
</div>
|
|
<div>
|
|
<%= l 'dir_CITY' %>
|
|
<%= text_field 'city', $dir_datas->{city} %>
|
|
</div>
|
|
<div>
|
|
<%= l 'dir_PHONENUMBER' %>
|
|
<%= text_field 'phonenumber', $dir_datas->{phonenumber} %>
|
|
</div>
|
|
<div>
|
|
<%= l 'dir_DESC_EXISTING' %>
|
|
<br><br>
|
|
<%= l 'dir_EXISTING' %>
|
|
<%= select_field 'existing'=> [[ (l 'dir_LEAVE') => 'leave'], [ (l 'dir_UPDATE') => 'update' ]] %>
|
|
|
|
<br>
|
|
<div class="row g-3 align-items-center">
|
|
<div class="col-md-2">
|
|
<button type="submit" class="btn btn-primary"><%= $btn %></button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
%end |