Sha256: 6f19a4d4699e1a4e7496d290adda3d190a1ab28c30d6add86aa8a576c1b57092
Contents?: true
Size: 422 Bytes
Versions: 8
Compression:
Stored size: 422 Bytes
Contents
<%= stylesheet_link_tag "old_sql/table.css" %> <%= javascript_include_tag "old_sql/table.js" %> <table class="grid" border="0" width="<%=@width%>"> <thead> <tr> <% @reports[@report_name]['fields'].each do |field| %> <th><%= field.capitalize %></th> <% end %> </tr> </thead> <% @report[:rows].each do |row| %> <tr> <% row[:cell].each do |cell| %> <td><%=cell%></td> <% end %> </tr> <% end %> </table>
Version data entries
8 entries across 8 versions & 1 rubygems