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

8 lines
426 B
Plaintext
Raw Normal View History

2012-12-05 07:09:58 +00:00
<% @co_author_relations.each do |co_author_relation| %>
<tr>
2012-12-05 10:58:43 +00:00
<td class="form_space"><%= co_author_relation.relation %></td>
<td><%= link_to 'Edit', edit_desktop_co_author_relation_path(co_author_relation), :class => "bt-edit-type" %></td>
2012-12-05 06:51:12 +00:00
<td><%= link_to 'Destroy', desktop_co_author_relation_path(co_author_relation), confirm: 'Are you sure?', method: :delete, :class=>"bt-delete" %></td>
</tr>
2012-12-05 07:09:58 +00:00
<% end %>