<%= render partial: 'shared/header', locals: { links: [[@customer.name.truncate(6), @customer], ["見積書一覧", "#"]]} %> <%= render 'customers/sidebar' %>
<%= render partial: 'customers/title', locals: { title: @customer.name + " 見積書一覧"} %>


物件名

日付

詳細

添付ファイル

<% @customer.estimates.each do |estimate| %>

<%= estimate.name %>

<%= estimate.date %>

<%= estimate.detail %>

<% estimate.contents.each do |c| %> <% next if !c.upload_file %>
<%= link_to c.upload_file_name, { action: 'download', id: c.id, controller: 'customers'}, target: "_blank"%>
<% end %>
<%= link_to '詳細', estimate_lookup_path(@customer, estimate), class: "w8-button l-blue small2" %> <%= link_to '編集', estimate_edit_path(@customer, estimate), class: "w8-button l-blue small2" %> <%= link_to '削除', estimate, method: :delete, data: { confirm: "本当に削除しますか?"}, class: "w8-button l-blue small2" %>
<% end %>

<%= link_to '新規', estimate_edit_path(@customer, @estimate_new), class: "w8-button l-blue small" %>