<% @page_title = @member ? @member.login_name + "さんの投稿画像" : "投稿画像" %>

<%= @page_title %>

<% if @current_member && @current_member == @member %>

<%= link_to "画像投稿", new_material_path %>

<% end %> <% if @materials.present? %> <%= will_paginate @materials %> <% @materials.each do |mt|%> <% end %>
  タイトル 説明 公開 DL制約  
<%= link_to material_image_tag(mt, "jpg" , {width: '100%'}), [:admin,mt] %> <%= mt.title%>
( <% if locale_is?("ja") %> <%= mt.name_sei%> <%= mt.name_mei%> <% else %> <%= mt.name_first%> <%= mt.name_family%> <% end %> )
<%= truncate(strip_tags(mt.description), length:100) %> <%= mt.publish_flg ? "公開" : "非公開"%> <%= "可" if mt.dl_condition == "public"%> <%= "会員のみ" if mt.dl_condition == "member_only"%> <%= "不可" if mt.dl_condition == "private"%> <%= link_to "編集" ,[:edit,:admin,mt] %>   <%= link_to "削除", [:admin,mt],method: :delete , confirm: "削除してよろしいですか?"%>
<% if false %>
<% @materials.each do |mt|%>
<%= link_to material_image_tag(mt, "jpg" , {width: '100%'}) ,mt %> <%= render "footer", mt: mt %>
<% end %>

<% end %> <%= will_paginate @materials %> <% else %>

投稿された画像はありません。

<% end %>