Sha256: 0fc6f37b650e0269db9b55336e9ce68a4d2f8126ae5b14d551deee3ad9486a6f

Contents?: true

Size: 916 Bytes

Versions: 8

Compression:

Stored size: 916 Bytes

Contents

<%
report = @report if defined?(report).nil?
%>
<%= content_tag(:div, :id => report[:id]) do %>
	<%
	title = report[:title]
	title += '<br>'+content_tag(:span, report[:subtitle], :class => 'small') if report[:subtitle]
	%>
	<%= content_tag(:h3, title.html_safe) if title %>
	<div>
    <%= meta_report_alt_links(report[:report], params) %>
    <% if report[:description] %><br><p class='description'><%= report[:description] %></p><% end %>
  </div>

	<%= content_tag(:div, "No data found", :class => 'textcenter') if report[:tables].blank? %>

	<%
	table_names = report[:table_order] || report[:tables].keys.sort_by {|k| k.to_s}
	table_names.each do |table_name| %>
		<%= render partial: 'meta_reports/default_table', locals: {table_name: table_name, table: report[:tables][table_name]} %>
	<% end %>
<% end %>

<% unless request.xhr? || report[:report].nil? %>
	<%= link_to 'Reports', '/meta_reports' %>
<% end -%>

Version data entries

8 entries across 4 versions & 1 rubygems

Version Path
meta_reports-0.1.3 app/views/meta_reports/_default.html.erb
meta_reports-0.1.3 spec/dummy/app/views/meta_reports/_default.html.erb
meta_reports-0.1.2 app/views/meta_reports/_default.html.erb
meta_reports-0.1.2 spec/dummy/app/views/meta_reports/_default.html.erb
meta_reports-0.1.1 app/views/meta_reports/_default.html.erb
meta_reports-0.1.1 spec/dummy/app/views/meta_reports/_default.html.erb
meta_reports-0.1.0 app/views/meta_reports/_default.html.erb
meta_reports-0.1.0 spec/dummy/app/views/meta_reports/_default.html.erb