Sha256: caaea0af153d8885804f7e75317ede68ed0713ca47e37beced350019fc014dc5
Contents?: true
Size: 763 Bytes
Versions: 1
Compression:
Stored size: 763 Bytes
Contents
<div class="sixteen columns"> <h3><%= title %></h3> <table class="index"> <thead> <tr> <% hash.to_a.sort.each do |key, value| %> <% next if key.include?('fee') || key.include?('invoice') || key.include?('livemode') %> <th><%= key.humanize.titleize %></th> <% end %> </tr> </thead> <tbody> <tr> <% hash.to_a.sort.each do |key, value| %> <% next if key.include?('fee') || key.include?('invoice') || key.include?('livemode') %> <td> <% if value.is_a?(Hash) %> <%= debug value %> <% else %> <%= value %> <% end %> </td> <% end %> </tr> </tbody> </table> </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
solidus_log_viewer-1.0.0 | app/views/spree/admin/log_entries/_hash_table.html.erb |