orbit-basic/app/views/desktop/co_author_relations/index.html.erb

19 lines
406 B
Plaintext
Raw Normal View History

2012-12-03 04:10:45 +00:00
<h1>Listing co_author_relations</h1>
<%= render 'form' %>
<table>
<tr>
<th>Relation</th>
<th></th>
<th></th>
</tr>
<% @co_author_relations.each do |co_author_relation| %>
<tr>
<td><%= co_author_relation.relation %></td>
<td><%= link_to 'Destroy', desktop_co_author_relation_path(co_author_relation), confirm: 'Are you sure?', method: :delete %></td>
</tr>
<% end %>
</table>