68 lines
2.4 KiB
Plaintext
68 lines
2.4 KiB
Plaintext
<!-- page content -->
|
|
|
|
<div class="right_col" role="main">
|
|
<div class="">
|
|
<div class="page-title">
|
|
<div class="title_left">
|
|
<h3>Volume Info</h3>
|
|
</div>
|
|
|
|
<div class="title_right">
|
|
<div class="col-md-5 col-sm-5 col-xs-12 form-group pull-right top_search">
|
|
<div class="input-group">
|
|
<input type="text" class="form-control" placeholder="Search for...">
|
|
<span class="input-group-btn">
|
|
<button class="btn btn-default" type="button">Go!</button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="clearfix"></div>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<%@volumes.each do |t|%>
|
|
<div class="col-md-12 col-sm-1 col-xs-12">
|
|
<div class="x_panel">
|
|
<div class="x_title">
|
|
<h2>Infomation <small><%=t["Volume Name"]%></small></h2>
|
|
<ul class="nav navbar-right panel_toolbox">
|
|
<li><a class="collapse-link"><i class="fa fa-chevron-up"></i></a>
|
|
</li>
|
|
<li class="dropdown">
|
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><i class="fa fa-wrench"></i></a>
|
|
<ul class="dropdown-menu" role="menu">
|
|
<li><a href="#">Settings 1</a>
|
|
</li>
|
|
<li><a href="#">Settings 2</a>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
<li><a class="close-link"><i class="fa fa-close"></i></a>
|
|
</li>
|
|
</ul>
|
|
<div class="clearfix"></div>
|
|
</div>
|
|
<div class="x_content">
|
|
Type : <%=t["Type"]%> <br>
|
|
Volume ID : <%=t["Volume ID"]%> <br>
|
|
Status : <%=t["Status"]%> <br>
|
|
Number of Bricks : <%=t["Number of Bricks"]%> <br>
|
|
Transport-type : <%=t["Transport-type"]%> <br>
|
|
Bricks : <%=t["Bricks"]%> <br>
|
|
Bricks1 : <%=t["Brick1"]%> <br>
|
|
Options Reconfigured : <%=t["Options Reconfigured"]%> <br>
|
|
performance.readdir-ahead : <%=t["performance.readdir-ahead"]%> <br>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<%end%>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- /page content -->
|