Sha256: 3cc9b53103f54ceeb94f2dcaf63a8ebeb219a1e4c73dd2112f2441617f794601
Contents?: true
Size: 535 Bytes
Versions: 13
Compression:
Stored size: 535 Bytes
Contents
<% content_for :head do %> <%= calendar_date_select_includes %> <% end %> <h1><%= t("listing_reports") %></h1> <table class="index"> <thead> <tr> <th><%= t("name") %></th> <th><%= t("description") %></th> </tr> </thead> <tbody> <% @reports.each do |key, value| %> <tr> <td><%= link_to t(value[:name].downcase.gsub(" ","_")), send("#{key}_admin_reports_url".to_sym) %></td> <td><%= t(value[:description].downcase.gsub(" ","_")) %></td> </tr> <% end %> </tbody> </table>
Version data entries
13 entries across 13 versions & 3 rubygems