<%= render partial: 'shared/header', locals: { links: [[@customer.name.truncate(6), @customer], ["その他一覧", "#"]]} %> <%= render 'sidebar' %> <%= render partial: 'title', locals: { title: @customer.name + " その他ファイル一覧"} %>


物件名

日付

注釈

添付ファイル

<% @customer.others.each do |other| %>

<%= other.name %>

<%= other.date %>

<%= other.detail %>

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

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