view_buckets.html.erb 571 B

12345678910111213141516171819202122232425262728
  1. <h2 class="title"><br><br><center>S3 Buckets</center></h2>
  2. <div class="container">
  3. <table class="table table-hover">
  4. <thead>
  5. <tr>
  6. <th>Name</th>
  7. <th>Size</th>
  8. <th>Region</th>
  9. <th>Owner</th>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. <% buckets.each do |bucket| %>
  14. <tr>
  15. <td><%= bucket['name'] %></td>
  16. <% if bucket['size'] < 0 %>
  17. <td>Unknown</td>
  18. <% else %>
  19. <td><%= (bucket['size']/1000000000).round(2) %> Gb</td>
  20. <% end %>
  21. <td><%= bucket['region']%></td>
  22. <td><%= bucket['owner'] %></td>
  23. </tr>
  24. <% end %>
  25. </tbody>
  26. </table>
  27. </div>