<%= 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) %>

<%= link_to t("legislation.summary.comments", count: question.comments.count), polymorphic_path(question, anchor: "comments") %>
<%= render "summary_comments", comments: question.best_comments %>
<% end %>
<% else %>

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

<% end %>