<% @process.questions.each do |question| %>

<%= link_to question.title, legislation_process_question_path(question.process, question) %>

<%= link_to t("legislation.summary.comments", count: question.comments.count), legislation_process_question_path(question.process, question) %>
<% if question.comments.count > 0 %> <%= t("legislation.summary.most_voted_comments") %> <% end %>
<% question.best_comments(3).each do |comment| %>

<%= link_to comment.body, comment_path(comment) %>

<%= comment.cached_votes_up - comment.cached_votes_down %> <%= t("legislation.summary.votes") %>

<% end %>
<% end %>