<%= t("legislation.summary.allegations_phase") %>

<%= t("legislation.summary.top_comments", count: comments.count) %>

<% if comments.any? %>
<% comments.group_by(&:commentable).each do |annotation, annotation_comments| %>
<%= t("legislation.annotations.index.comments_about") %>
<%= annotation.quote %>
<%= link_to t("legislation.summary.comments", count: annotation.comments.count), polymorphic_path(annotation, anchor: "comments") %>
<%= render "summary_comments", comments: annotation_comments %>
<% end %>
<% else %>

<%= t("legislation.summary.no_allegation") %>

<% end %>