76 lines
2.4 KiB
Plaintext
76 lines
2.4 KiB
Plaintext
<h2><%= t("moderation.debates.index.title") %></h2>
|
|
|
|
<%= render 'shared/filter_subnav', i18n_namespace: "moderation.debates.index" %>
|
|
|
|
<div class="row">
|
|
<h3 class="small-8 large-8 columns"><%= page_entries_info @debates %></h3>
|
|
<div class="small-4 large-4 columns">
|
|
<div class="right">
|
|
<%= t("moderation.debates.index.order") %>
|
|
<%= render 'shared/order_selector', i18n_namespace: "moderation.debates.index" %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<%= form_tag moderate_moderation_debates_path(request.query_parameters), method: :put do %>
|
|
<p class="left js-check">
|
|
<%= t('shared.check') %>:
|
|
<%= link_to t('shared.check_all'), '#', data: {check_all: "debate_ids[]"} %>
|
|
|
|
|
<%= link_to t('shared.check_none'), '#', data: {check_none: "debate_ids[]"} %>
|
|
</p>
|
|
|
|
<table class="clear">
|
|
<tr>
|
|
<th>
|
|
<%= t("moderation.debates.index.headers.debate") %>
|
|
</th>
|
|
<th>
|
|
<%= t("moderation.debates.index.headers.moderate") %>
|
|
</th>
|
|
</tr>
|
|
<% @debates.each do |debate| %>
|
|
<tr id="debate_<%= debate.id %>">
|
|
<td>
|
|
<%= link_to debate.title, debate, target: "_blank" %>
|
|
<br>
|
|
<span class="date"><%= l debate.updated_at.to_date %></span>
|
|
<span class="bullet"> • </span>
|
|
<%= debate.flags_count %><i class="icon-flag flag-disable"></i>
|
|
<span class="bullet"> • </span>
|
|
<%= debate.author.username %>
|
|
<br>
|
|
<div class="moderation-description">
|
|
<%= debate.description %>
|
|
</div>
|
|
</td>
|
|
<td class="text-center">
|
|
<%= check_box_tag "debate_ids[]", debate.id, nil, id: "#{dom_id(debate)}_check" %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
|
|
<%= submit_tag t('moderation.debates.index.block_authors'),
|
|
name: "block_authors",
|
|
class: "button radius alert",
|
|
data: {confirm: t('moderation.debates.index.confirm')}
|
|
%>
|
|
|
|
<div class="right">
|
|
<%= submit_tag t('moderation.debates.index.hide_debates'),
|
|
name: "hide_debates",
|
|
class: "button radius alert",
|
|
data: {confirm: t('moderation.debates.index.confirm')}
|
|
%>
|
|
<%= submit_tag t('moderation.debates.index.ignore_flags'),
|
|
name: "ignore_flags",
|
|
class: "button radius success",
|
|
data: {confirm: t('moderation.debates.index.confirm')}
|
|
%>
|
|
</div>
|
|
|
|
<%= paginate @debates %>
|
|
|
|
<% end %>
|