AyuntamientoMadrid/participacion

View on GitHub
app/views/moderation/debates/index.html.erb

Summary

Maintainability
Test Coverage
<%= render Moderation::Shared::IndexComponent.new(@debates) do %>
  <table>
    <thead>
      <tr>
        <th><%= t("moderation.debates.index.headers.debate") %></th>
        <th><%= t("moderation.debates.index.headers.moderate") %></th>
      </tr>
    </thead>

    <tbody>
      <% @debates.each do |debate| %>
        <tr id="debate_<%= debate.id %>">
          <td>
            <%= link_to debate.title, debate %>
            <br>
            <span class="date"><%= l debate.updated_at.to_date %></span>
            <span class="bullet">&nbsp;&bull;&nbsp;</span>
            <%= debate.flags_count %><span class="icon-flag flag-disable"></span>
            <span class="bullet">&nbsp;&bull;&nbsp;</span>
            <%= debate.author.username %>
            <br>
            <div class="moderation-description">
              <%= wysiwyg(debate.description) %>
            </div>
          </td>
          <td class="text-center">
            <%= check_box_tag "debate_ids[]", debate.id, nil, id: "#{dom_id(debate)}_check" %>
          </td>
        </tr>
      <% end %>
    </tbody>
  </table>
<% end %>