Page MenuHomeGRNET

index.html.erb
No OneTemporary

File Metadata

Created
Tue, Nov 18, 12:56 AM

index.html.erb

<% if @obsolete %>
<h1 data-toggle="tooltip" title="These clients are not in Archiving but they are present to the Bacula db">
Obsolete Clients
<small><label class="glyphicon glyphicon-question-sign"></label></small>
</h1>
<% else %>
<h1>Bacula Clients</h1>
<% end %>
<div class="datatable-wrapper">
<div class="table-responsive">
<table id="admin_clients" class="table table-striped table-bordered table-condensed">
<thead>
<tr>
<th class="no-search">ClientId</th>
<th>Name</th>
<th>Uname</th>
<th>Client Type</th>
<th class="no-search">Active Jobs</th>
<th class="no-search">Last Backup</th>
<th class="no-search">File Ret. (days)</th>
<th class="no-search">Job Ret. (days)</th>
<th class="no-search">Space Used</th>
<th class="no-search">Quota</th>
<th class="no-search">Space Used %</th>
<th class="no-search">Files</th>
<th class="neither-search-nor-order">AutoPrune</th>
</tr>
</thead>
<tbody>
<%= render partial: 'client', collection: @clients %>
</tbody>
</table>
</div>
</div>

Event Timeline