<% @tables.each_with_index do |table, table_index| %>
<% if (table["op"] == "LOStore") %> Store : <% end %> <%= table["alias"] %> <% if (table["notices"]) %> <% end %>
<% table["fields"].each do |field| %>
<%= field %>
<% end %>
<% table["data"].each_with_index do |row, row_index| %>
<% row.each_with_index do |value, item_index| %> <% if (value) %>
<%# <%- $.mortar_data.truncate.truncate_center(value, 30) %> <%= value[0..30] %>
<%= value %>
<% else %>
<% end %> <% end %>
<% end %>
<% if (table["notices"]) %> <% table["notices"].each do |notice| %>
×
* <%= notice %>
<% end %> <% end %> <% end %> <% if (@udf_output and (not @udf_output.empty?)) %>
UDF Output:
<%= @udf_output %>
<% end %>