testing/app/views/admin/testings/_index.html.erb

45 lines
1.3 KiB
Plaintext

<table class="table main-list">
<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>
<td>
<%= qa.category.title rescue "" %>
<% if (qa.category.disable rescue false) %>
<span class='label'><%= t(:disabled) %></span>
<% end %>
</td>
<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/testings/<%= qa.id.to_s %>/edit"><%= t(:edit) %></a></li>
<li><a href="/admin/testings/<%= 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
%>