AyuntamientoMadrid/participacion

View on GitHub
app/components/documents/documents_component.html.erb

Summary

Maintainability
Test Coverage
<div id="documents" class="documents">
  <h2><%= t("documents.title") %>&nbsp;<span>(<%= documents.count %>)</span></h2>

  <ul class="no-bullet document-link">
    <% documents.each do |document| %>
      <li>
        <%= render Documents::DocumentComponent.new(document, show_destroy_link: true) %>
      </li>
    <% end %>
  </ul>
</div>