Sha256: 84142e5cbe8c428f3bf9620145b124b49a4e9e3b007dd4f2b7f4521522cce3c6
Contents?: true
Size: 510 Bytes
Versions: 48
Compression:
Stored size: 510 Bytes
Contents
<% if @report.nil? %> The report has no data for this date range. <% else %> <%= 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> <% end %>
Version data entries
48 entries across 48 versions & 1 rubygems