<%= t("scaffold.pagetitle_index", model: Report.model_name.human(count: 2)) %>

<% @reports.each do |report| %> <% end %>
<%= Report.human_attribute_name(:id) %> <%= Report.human_attribute_name(:name) %> <%= Report.human_attribute_name(:comment_html) %>
<%= link_to(report.id, url_for(report)) %> <%= link_to(report.name, url_for(report)) %> <%= link_to(truncate(report.comment_html.to_plain_text), url_for(report)) if report.comment_html %> <%= l(report.created_at, format: :short) %> <%= l(report.updated_at, format: :short) %>
<%= link_to t("scaffold.link_new", model: Report.model_name.human), new_report_path %>