Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1. <div class="container">
  2. <div class="span12 row">&nbsp;</div>
  3.  
  4. <div class="span12 row">
  5. <table class="table">
  6. <thead>
  7. <tr><th>Server</th><th>Status</th><th>Spare</th><th>Last Update</th></tr>
  8. </thead>
  9. <tbody>
  10. <% @raids.each do |raid| %>
  11. <% if raid.status == "OK" && raid.spare == "OK" %>
  12. <tr class="success">
  13. <% else %>
  14. <tr class="error">
  15. <% end %>
  16. <td><%= raid.hostname %></td>
  17. <td><%= raid.status %></td>
  18. <td><%= raid.spare %></td>
  19. <td><%= time_ago_in_words(raid.update_time) %> ago</td>
  20. </tr>
  21. <% end %>
  22. </tbody>
  23. </table>
  24. </div>
  25. </div>
  26.  
  27. Using rake (0.9.2.2)
  28. Using i18n (0.6.0)
  29. Using multi_json (1.3.5)
  30. Using activesupport (3.2.3)
  31. Using builder (3.0.0)
  32. Using activemodel (3.2.3)
  33. Using erubis (2.7.0)
  34. Using journey (1.0.3)
  35. Using rack (1.4.1)
  36. Using rack-cache (1.2)
  37. Using rack-test (0.6.1)
  38. Using hike (1.2.1)
  39. Using tilt (1.3.3)
  40. Using sprockets (2.1.3)
  41. Using actionpack (3.2.3)
  42. Using mime-types (1.18)
  43. Using polyglot (0.3.3)
  44. Using treetop (1.4.10)
  45. Using mail (2.4.4)
  46. Using actionmailer (3.2.3)
  47. Using arel (3.0.2)
  48. Using tzinfo (0.3.33)
  49. Using activerecord (3.2.3)
  50. Using activeresource (3.2.3)
  51. Using addressable (2.2.8)
  52. Using annotate (2.4.1.beta1)
  53. Using bcrypt-ruby (3.0.1)
  54. **Using bootstrap-sass (2.1.0.0)**
  55. Using nokogiri (1.5.2)
  56. Using ffi (1.0.11)
  57. Using childprocess (0.3.2)
  58. Using libwebsocket (0.1.3)
  59. Using rubyzip (0.9.8)
  60. Using selenium-webdriver (2.21.2)
  61. Using xpath (0.1.4)
  62. Using capybara (1.1.2)
  63. Using coffee-script-source (1.3.1)
  64. Using execjs (1.3.2)
  65. Using coffee-script (2.2.0)
  66. Using rack-ssl (1.3.2)
  67. Using json (1.7.3)
  68. Using rdoc (3.12)
  69. Using thor (0.14.6)
  70. Using railties (3.2.3)
  71. Using coffee-rails (3.2.2)
  72. Using diff-lcs (1.1.3)
  73. Using factory_girl (3.2.0)
  74. Using factory_girl_rails (3.2.0)
  75. Using faker (1.0.1)
  76. Using guard (1.0.3)
  77. Using guard-rspec (0.5.5)
  78. Using jquery-rails (2.0.2)
  79. Using libnotify (0.5.9)
  80. Using libv8 (3.3.10.4)
  81. Using mysql (2.8.1)
  82. Using bundler (1.1.4)
  83. Using rails (3.2.3)
  84. Using rb-readline (0.4.2)
  85. Using rspec-core (2.9.0)
  86. Using rspec-expectations (2.9.1)
  87. Using rspec-mocks (2.9.0)
  88. Using rspec (2.9.0)
  89. Using rspec-rails (2.9.0)
  90. Using sass (3.1.18)
  91. Using sass-rails (3.2.5)
  92. Using sqlite3 (1.3.6)
  93. Using therubyracer (0.10.1)
  94. Using uglifier (1.2.4)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement