Page MenuHomeGRNET

index.html.erb
No OneTemporary

File Metadata

Created
Sun, Aug 10, 5:42 AM

index.html.erb

<div class="row right">
<%= link_to new_admin_pool_path, class: "btn btn-default", role: "button" do %>
<label class="glyphicon glyphicon-plus text-primary"></label>
New Pool
<% end %>
</div>
<h1>Pools</h1>
<div class="row">
<div class="col-xs-12">
<div class="table-responsive">
<table class="table table-striped table-bordered table-condensed">
<thead>
<tr>
<th>id</th>
<th>Name</th>
<th>Max Volumes</th>
<th>Use Once</th>
<th>Volume Retention</th>
<th>Max Volume Jobs</th>
<th>Max Volume Files</th>
<th>Max Volume Bytes</th>
<th>Auto Prune</th>
<th>Label Format</th>
<th>Recycle</th>
<th>Pool Type</th>
</tr>
</thead>
<tbody>
<%= render partial: 'pool', collection: @pools %>
</tbody>
</table>
</div>
</div>
</div>

Event Timeline