Skip to content
Snippets Groups Projects
Commit 3b7e8332 authored by Arnaud Levy's avatar Arnaud Levy
Browse files

volumes

parent 2027a0ba
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,28 @@
<%= @volume.published_at&.to_date %>
</p>
<table class="table">
<thead>
<tr>
<th><%= Research::Journal::Article.model_name.human %></th>
<th>Published at</th>
<th></th>
</tr>
</thead>
<tbody>
<% @volume.articles.each do |article| %>
<tr>
<td><%= link_to article, [:admin, article] %></td>
<td><%= article.published_at %></td>
<td class="text-end">
<%= edit_link article %>
<%= destroy_link article %>
</td>
</tr>
<% end %>
</tbody>
</table>
<% content_for :buttons do %>
<%= edit_link @volume %>
<% end %>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment