43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
<div id="Nfsshare-TABLE">
|
|
<script>
|
|
window.onload = function() {
|
|
SelectInput();
|
|
};
|
|
</script>
|
|
<h2>
|
|
%= l("nfs Hello TABLE");
|
|
</h2>
|
|
% my $btn = l('APPLY');
|
|
%= form_for "Nfsshared" => (method => 'POST') => begin
|
|
|
|
% param 'trt' => $nfs_data->{trt} unless param 'trt';
|
|
%= hidden_field 'trt' => $nfs_data->{trt}
|
|
%# Inputs etc in here.
|
|
<h2>Manage NFS Ibay settings:</h2>
|
|
<table class="sme-border TableSort">
|
|
<thead>
|
|
<tr>
|
|
<th class='sme-border'>Name</th>
|
|
<th class='sme-border'>Description</th>
|
|
<th class='sme-border'>Nfs status</th>
|
|
<th class='sme-border'>Action</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
% my $control_data = $self->stash('ibays');
|
|
% foreach my $row (@$control_data) {
|
|
<tr>
|
|
<td class='sme-border'><%=$row->{Name}%></td>
|
|
<td class='sme-border'><%=$row->{Description}%></td>
|
|
<td class='sme-border'><%=$row->{flag}%></td>
|
|
<td class='sme-border'><%=$row->{PARAMS}%></td>
|
|
</tr>
|
|
%}
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
%# Probably finally by a submit.
|
|
% end
|
|
</div>
|