51 lines
1.6 KiB
Plaintext
51 lines
1.6 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.to_s[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") +
|
|
content_tag(:div, link_to(t(:new_),new_admin_faq_path, :class=>"btn btn-primary"), class: "pull-right")
|
|
end
|
|
%> |