Added search for comments and proposal_notifications, added tsv column for search and rake tasks to update/create tsv vector.
41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
<h2><%= t("admin.hidden_debates.index.title") %></h2>
|
|
<%= render Admin::SearchComponent.new(label: t("admin.shared.search.label.debates")) %>
|
|
<p><%= t("admin.shared.moderated_content") %></p>
|
|
|
|
<%= render "shared/filter_subnav", i18n_namespace: "admin.hidden_debates.index" %>
|
|
|
|
<% if @debates.any? %>
|
|
<h3><%= page_entries_info @debates %></h3>
|
|
|
|
<table>
|
|
<thead>
|
|
<th scope="col"><%= t("admin.shared.title") %></th>
|
|
<th scope="col" class="small-6"><%= t("admin.shared.description") %></th>
|
|
<th scope="col" class="small-4"><%= t("admin.shared.actions") %></th>
|
|
</thead>
|
|
<tbody>
|
|
<% @debates.each do |debate| %>
|
|
<tr id="<%= dom_id(debate) %>">
|
|
<td class="align-top">
|
|
<strong><%= debate.title %></strong>
|
|
</td>
|
|
<td>
|
|
<div class="moderation-description">
|
|
<%= wysiwyg(debate.description) %>
|
|
</div>
|
|
</td>
|
|
<td class="align-top">
|
|
<%= render Admin::HiddenTableActionsComponent.new(debate) %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<%= paginate @debates %>
|
|
<% else %>
|
|
<div class="callout primary margin">
|
|
<%= t("admin.hidden_debates.index.no_hidden_debates") %>
|
|
</div>
|
|
<% end %>
|