Sha256: 57ec8b3d3bee922b7cbff8c25399493e46c4b051cfebe319f5ddd480cbf12d2d
Contents?: true
Size: 921 Bytes
Versions: 3
Compression:
Stored size: 921 Bytes
Contents
<div class="row"> <div class="span8"> <table class="table table-bordered table-striped"> <thead> <tr> <th><%= _('Name') %></th> <th><%= _('Model') %></th> <% if SETTINGS[:locations_enabled] %> <th><%= _('Location') %></th> <% end %> <% if SETTINGS[:organizations_enabled] %> <th><%= _('Organization') %></th> <% end %> </tr> </thead> <tbody> <% hosts.each do |host| -%> <tr> <td><%=h host %> </td> <td><%=h host.model %> </td> <% if SETTINGS[:locations_enabled]%> <td><%=h host.try(:location) %></td> <% end %> <% if SETTINGS[:organizations_enabled]%> <td><%=h host.try(:organization) %></td> <% end %> </tr> <% end -%> </tbody> </table> </div> </div>
Version data entries
3 entries across 3 versions & 1 rubygems