view_buckets.erb 1007 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. <th>Versioning</th>
  11. <th>Creation</th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. <% buckets.each do |bucket| %>
  16. <tr>
  17. <td><%= bucket['name'] %></td>
  18. <% if bucket['size'] < 0 %>
  19. <td>Unknown</td>
  20. <% else %>
  21. <td><%= (bucket['size']/1000000000).round(2) %> Gb</td>
  22. <% end %>
  23. <td><%= bucket['region']%></td>
  24. <td><%= bucket['owner'] %></td>
  25. <td>
  26. <% if bucket['versioning'] == "true" %>
  27. <i class="fa fa-check-circle" style="color:#00db19;" aria-hidden="true"></i>
  28. <% elsif bucket['versioning'] == "false" %>
  29. <i class="fa fa-times-circle" style="color:#db001d;" aria-hidden="true"></i>
  30. <% else %>
  31. <i class="fa fa-question-circle" aria-hidden="true"></i>
  32. <% end %>
  33. </td>
  34. <td><%= bucket['creation'] %></td>
  35. </tr>
  36. <% end %>
  37. </tbody>
  38. </table>
  39. </div>