% @page_title = "投稿記事 一覧" %>
<%= link_to "新規投稿", :new_admin_entry %>
<% end %> <% if @entries.present? %> <%= will_paginate @entries %>| 日時 | タイトル | 状態 | 投稿者 | 所属機関 | |
|---|---|---|---|---|---|
| <%= entry.posted_at.strftime("%Y/%m/%d %H:%M") %> | <%= link_to entry.title, admin_entry_path(entry) %> | <%= Entry.status_text(entry.status) %> | <%= link_to "#{entry.author.name_sei} #{entry.author.name_mei}" , admin_member_path(entry.author)%> | <%= entry.author.organization%> | <%= link_to "編集", edit_admin_entry_path(entry) %> ・<%= link_to "削除", admin_entry_path(entry), method: :delete ,confirm: "この記事(#{entry.title})をさくじょしますか?"%> |
記事がありません。
<% end %>