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

<%= t("legislation.summary.debates", count: questions.count) %>

<% if questions.any? %>
<% questions.each do |question| %>

<%= link_to question.title, polymorphic_path(question) %>

<%= render Shared::CommentsCountComponent.new( question.comments.count, url: polymorphic_path(question, anchor: "comments") ) %>
<%= render "summary_comments", comments: question.best_comments %>
<% end %>
<% else %>

<%= t("legislation.processes.debate.empty_questions") %>

<% end %>