23 lines
809 B
Plaintext
23 lines
809 B
Plaintext
<table class="table main-list">
|
|
<thead>
|
|
<th><%= t("category") %></th>
|
|
<th><%= t("_action") %></th>
|
|
</thead>
|
|
<tbody>
|
|
<% @ask_acknowledgements.each do |ask| %>
|
|
<tr>
|
|
<td><%= link_to(Category.find(ask.category_id).title, edit_admin_ask_acknowledgement_path(ask)) %></td>
|
|
<td>
|
|
<%= link_to 'Delete', admin_ask_acknowledgement_path(ask), method: :delete, data: { confirm: 'Are you sure?'}, :class => "btn btn-danger" %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<%=
|
|
content_tag :div, class: "bottomnav clearfix" do
|
|
content_tag(:div, paginate(@ask_acknowledgements), class: "pagination pagination-centered") +
|
|
content_tag(:div, link_to(t(:new_),new_admin_ask_acknowledgement_path, :class=>"btn btn-success"), class: "pull-right")
|
|
end
|
|
%> |