<%= image_tag 'subtitle.png' %>

完了報告履歴

<%= link_to "今月", report_list_path(@start_day, @end_day), class: "button button3" %>

お客様名

日付

内容

<% @reports.each do |report| %> <% customer = Customer.find(report.customer_id || 1) %>
<%= customer.name %>
<%= report.date %>
<%= report.detail %>
<%= link_to "詳細ページ", report_edit_path(customer, report), class: "button button3" %>
<% if root? %>
<%= link_to "編集", report_edit_path(customer, report), class: "button button3" %>
<%= link_to "削除", report, method: :delete, data: { confirm: "本当に削除しますか? この操作は取り消すことができません。" }, class: "button button3" %>
<% end %>
<% end %>
<%= will_paginate @reports, previous_label: "前ページ", next_label: "次ページ" %>