summaryrefslogtreecommitdiffstats
path: root/management-interface/views/images.htm
blob: 20b9bbe331e7183c07bf6fafd24dbcb4b3efea86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<div class="container">
  <div class="jumbotron">
    <h2>List of all images</h2>
   	<table class="table table-striped table-responsive">
	  <thead>
	    <tr>
	      <th>UUID</th>
  	      <th>Name</th>
          <th>Owner</th>
          <th>Missing blocks</th>
	    </tr>
      </thead>
	  <tbody>
	    <repeat group="{{ @result }}" value="{{ @item }}">
	      <tr>
	        <td>{{ @item.UUID }}</td>
	        <td>{{ @item.image_name  }}</td>
            <td>{{ @item.image_owner  }}</td>
            <td>{{ @item.missingBlocks  }}</td>
	      </tr>
	    </repeat>
	  </tbody>
	</table>
  </div>
</div> <!-- /container -->