15 lines
609 B
Plaintext
15 lines
609 B
Plaintext
|
<tr id="<%= dom_id writing_book %>" class="with_action">
|
||
|
<td class="span1"><%= writing_book.year %></td>
|
||
|
<td class="span1">
|
||
|
<%= link_to writing_book.create_link, page_for_book(writing_book), target: "blank" %>
|
||
|
<div class="quick-edit">
|
||
|
<ul class="nav nav-pills hide">
|
||
|
<%if current_user.is_admin?%>
|
||
|
<li><%= link_to t('edit'), edit_admin_book_path(writing_book) %></li>
|
||
|
<li><%= link_to t(:delete_), admin_book_path(writing_book), method: :delete, remote: true, data: { confirm: 'Are you sure?' } %></li>
|
||
|
<% end -%>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</td>
|
||
|
<td class="span1"><%= writing_book.authors%></td>
|
||
|
</tr>
|