2014-05-08 07:33:39 +00:00
|
|
|
<table class="table main-list">
|
2014-08-07 10:47:37 +00:00
|
|
|
<thead>
|
|
|
|
<tr class="sort-header">
|
|
|
|
<% @table_fields.each do |f| %>
|
|
|
|
<%= thead(f) %>
|
|
|
|
<% end %>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<% @qas.each do |qa| %>
|
|
|
|
<tr>
|
|
|
|
<td><%= qa.status_for_table %></td>
|
2014-12-11 09:48:10 +00:00
|
|
|
<td>
|
|
|
|
<%= qa.category.title rescue "" %>
|
|
|
|
<% if (qa.category.disable rescue false) %>
|
|
|
|
<span class='label'><%= t(:disabled) %></span>
|
|
|
|
<% end %>
|
|
|
|
</td>
|
2014-08-07 10:47:37 +00:00
|
|
|
<td>
|
|
|
|
<a href="#" target="_blank"><%= qa.title %></a>
|
|
|
|
<div class="quick-edit">
|
|
|
|
<ul class="nav nav-pills">
|
|
|
|
<% if can_edit_or_delete?(qa) %>
|
|
|
|
<li><a href="/<%= I18n.locale.to_s %>/admin/faqs/<%= qa.id.to_s %>/edit"><%= t(:edit) %></a></li>
|
|
|
|
<li><a href="/admin/faqs/<%= qa.id.to_s %>" data-method="delete" data-confirm="Are you sure?"><%= t(:delete_) %></a></li>
|
|
|
|
<% end %>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<% qa.tags.each do |tag| %>
|
|
|
|
<span class="label label-warning"><%= tag.name %></span>
|
|
|
|
<% end %>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<%=
|
|
|
|
content_tag :div, class: "bottomnav clearfix" do
|
|
|
|
content_tag :div, paginate(@qas), class: "pagination pagination-centered"
|
|
|
|
end
|
|
|
|
%>
|