faq/app/views/admin/faqs/_index.html.erb

50 lines
1.5 KiB
Plaintext

<table class="table main-list">
<thead>
<tr class="sort-header">
<% @table_fields.each do |f| %>
<%= thead(f) %>
<% end %>
<th><%=t('faq.update_user')%></th>
</tr>
</thead>
<tbody>
<% @qas.each do |qa| %>
<tr>
<td><%= qa.status_for_table %></td>
<td>
<%= qa.category.title rescue "" %>
<% if (qa.category.disable rescue false) %>
<span class='label'><%= t(:disabled) %></span>
<% end %>
</td>
<td>
<% if @faq_page_url != '#'%>
<a href='<%="/#{I18n.locale}#{@faq_page_url}/#{qa.title[0..6]}-#{qa.uid}"%>' target="_blank"><%= qa.title %></a>
<% else %>
<a href="#"><%= qa.title %></a>
<% end %>
<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>
<td><%=User.find(qa.update_user_id).user_name rescue ''%></td>
</tr>
<% end %>
</tbody>
</table>
<%=
content_tag :div, class: "bottomnav clearfix" do
content_tag :div, paginate(@qas), class: "pagination pagination-centered"
end
%>